如何使用 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://ajax.googleapis.com/ajax/libs/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>

更新于:2020 年 2 月 17 日

2 千多次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告