单击事件未在 jquery mobile 中的列表视图上触发
我有一个 jquery mobile 1.0b1 网站,它通过 ajax 填充列表。
填充列表后,我调用
$('#theResults').listview();
生成的 HTML 具有每个带有类“sresult”的链接 - 下面是一个示例
<li><a class='sresult' href="#addResult">
<h3>title</h3>
<p>some content</p>
</a></li>
现在我有一个实时函数,理论上应该将单击事件绑定到这些项目。它可以在 Firefox 中查找...但是在我的 iPhone 上的 Safari 中,单击事件不会触发
$('.sresult').live('click', function(event) {
event.preventDefault();
alert("i'm running!");
});
I've got a jquery mobile 1.0b1 website that populates a list via ajax.
After the list is populated I call
$('#theResults').listview();
The resulting HTML has the links each with a class "sresult" - what follows is a sample
<li><a class='sresult' href="#addResult">
<h3>title</h3>
<p>some content</p>
</a></li>
Now I have a live function that should THEORETICALLY bind a click event to these items. It works find in firefox... however on safari on my iPhone the click event does not fire
$('.sresult').live('click', function(event) {
event.preventDefault();
alert("i'm running!");
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 vclick (搜索 vclick http://jquerymobile.com/demos/1.0b1 /docs/api/globalconfig.html )
而不是
try vclick ( search for vclick http://jquerymobile.com/demos/1.0b1/docs/api/globalconfig.html )
instead of