使用iPad,IOS5,无论如何都可以在浏览器中点击一个按钮?我有一个使用html 5的网站,我注意到有时我必须多次单击一个按钮才能让jquery读取click事件。这是我使用的按钮的html:
<button class="button purple">SEARCH</button>
Jquery的:
$('.button.purple').click(function() {
//Code goes here
});
答案 0 :(得分:0)
如果该页面上有多个点击事件,您可能需要尝试event.preventDefault();
$('.button.purple').click(function(e) {
//Code goes here
e.preventDefault();
});