admin管理员组文章数量:1345891
I have swipeleft/swiperight working well in my app but when the user does the mousedown over an anchor tag, the swiping action is not triggered.
How can I make the swipe work even when the user does the mousedown on an anchor tag?
EDIT: It looks like this is only an issue in browsers on puters - tablets work fine.
I have swipeleft/swiperight working well in my app but when the user does the mousedown over an anchor tag, the swiping action is not triggered.
How can I make the swipe work even when the user does the mousedown on an anchor tag?
EDIT: It looks like this is only an issue in browsers on puters - tablets work fine.
Share Improve this question edited Apr 11, 2012 at 14:40 Eric asked Apr 11, 2012 at 1:19 EricEric 6,4753 gold badges27 silver badges34 bronze badges3 Answers
Reset to default 8You can swipe with the normal left button in any modern browser on the desktop.
Make sure you prevent the default action on the dragstart event on your div.
$("div").bind('dragstart', function(event) {event.preventDefault(); });
I have a working copy here...
http://jsfiddle/38nXe/
You can swipe on a desktop browser using the right mouse button. It is not very elegant as it also opens the context menu. But it works everywhere. Alex
As for me it was caused "excludedElements", it filters all buttons, select, textarea, inputs and anchors.
To make it work add additional parameter with empty array for example.
$("#test").swipe({ excludedElements:[] });
See touchSwipe plugin docs here enter link description here
本文标签: javascriptJQueryMobile swipe doesn39t work when you start on an anchor tagStack Overflow
版权声明:本文标题:javascript - JQuery-Mobile swipe doesn't work when you start on an anchor tag - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743812433a2543319.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论