无法在 jquerymobile 中使用点击操作
我尝试在项目上添加点击功能
$(文档).ready(function(){
$("#vibrateBtn").click(function() {
window.alert('测试');
});
});
我也尝试禁用 Ajax 加载,使用>
$(document).bind("mobileinit", function(){
ajax启用:假;
});
但结果相同。
请问哪里有问题?
感谢您的建议。
I tried add click function on
$(document).ready(function(){
$("#vibrateBtn").click(function() {
window.alert('test');
});
});
I tried also disable Ajax loading, with>
$(document).bind("mobileinit", function(){
ajaxEnabled:false;
});
But with same result.
Where can be problem please?
Thanks for any advice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在jquery mobile document.ready() 中不起作用,并使用 .live 绑定点击事件而不是使用短硬的 .click() 。
还有其他事件,如 pagebeforecreate、pagecreate。检查 jquery demo 以获取事件列表。
in jquery mobile document.ready() doesn't work and use .live to bind the click event instead of using the short hard .click().
There are other event like pagebeforecreate, pagecreate. check the jquery demo for the list of event.
请尝试这个代码
Please try this code