如何使用jQuery将外部HTML加载到<div>中?

要将外部HTML加载到<div>中,请将代码包装在load()函数中。要在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>