我是 Jquery 的新手。
我正在使用 HTML5 + CSS 和 JQUERY 开发一个移动应用程序,
如果我用本机代码开发适用于 Android 的应用程序,例如:我可以在 listview 上使用一个函数,当用户按下几秒钟时会发生一个动作,所以我想做同样的事件,但使用 jquery。
我有这个 div
<div class="perform-mouse-press"> hsjashja </div>
当我点击它时,我想做这样的事情:
//Holding some seconds , but the user is pressing the div
$(".perform-mouse-press).mousepress(function(){
//Doing something...
});
有人知道我该怎么做吗?