在 JQTouch 中加载单独的页面
当我点击链接时,我试图加载新页面。 有可能实现吗?我尝试使用加载方法,但它不起作用,也许我做错了..
$('.sinistros').click(function(){
$(document).load('index.html');
});
谢谢你
Im trying to load a new page when i click on a link.
Its possible to achieve that? i tried to use the load method but it doesnt work, maybe im doing it wrong..
$('.sinistros').click(function(){
$(document).load('index.html');
});
Thank u
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jQuery
.load()
函数不用于加载新文档或页面。它是一个事件侦听器,在元素加载时触发。基本上这就是说,监听点击,一旦点击,监听文档加载。 此处了解更多信息。请尝试以下方法:
The jQuery
.load()
function is not used to load a new document or page. It is an event listener that fires when the element loads. Basically what this is saying is, listen for a click, and once they click, listen for the document to load. Read more on it here.Try the following instead: