如何获取页面内容
发布网友
发布时间:2022-05-19 09:06
我来回答
共1个回答
热心网友
时间:2023-10-09 14:50
用jquery的load方法加载,
例子1(点击按钮加载一个注册页面的所有内容装入div容器):
$("button").click(function(){
$("div").load('regist.html');
});
例子2(点击按钮加载一个注册页面里面的ID为box的标签里面的所有内容装入div容器):
$("button").click(function(){
$("div").load("regist.html #box");
});