jquery mobile 中的长按操作

  • Post author:
  • Post category:其他


<script>
    jQuery(function () {
        jQuery("img").bind("taphold", tapholdHandler);

        function tapholdHandler(event) {
            alert("delete?");
        }
    });
</script>



版权声明:本文为donet_expert原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。