如何使用jQuery在div中加载页面?
要在jQuery的div中加载页面,请使用load()方法。首先,添加要添加的网页。
这是new.html的代码-
<html> <head> </head> <body> <p>This is demo text.<p> </body> </html>
示例
现在,添加以上页面的文件的代码片段,
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('#content').load("new.html");
});
</script>
</head>
<body>
<div id="content"></div>
</body>
</html>