如何使用 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>
广告