标签: javascript jquery swipe
我正在使用jQuery 1.9.2。我一直在尝试为我的应用添加滑动功能,但我没有做任何工作。在谷歌的移动模拟器上,当我滑动时没有任何反应。我错过了什么?
这是我能想到的最香草的例子:
<script type="text/javascript"> $('html').on("swipeleft",function() { $('html').html(""); }); </script>