"> Insert title here
"> Insert title here
">
<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title>Insert title here</title>
	<link rel="stylesheet" href="../css/outStyle.css">
	<script src="../js/jquery-3.6.0.min.js"></script>
	<style>
		table {
			text-align: center;
		}
	</style>
</head>
<body>
	<input type="button" id="type_json" value="타입json">
	<input type="button" id="type_html" value="타입html">
	<div></div>
	<script>	
		$('#type_html').on('click', function () {
			$.ajax({
				url: 'lprod2.jsp',	//jsp - mvc1패턴...
		//type : 'get',
				success: function (data) {
					$('div').html(data);
				},
				error: function (xhr) {
					alert("상태 : " + xhr.status);
				},
		//complete
				dataType: 'html'
			});
		});
	</script>
</body>
</html>