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