{"id":5201,"date":"2016-08-06T18:47:42","date_gmt":"2016-08-06T10:47:42","guid":{"rendered":"https:\/\/sdeno.com\/?p=5201"},"modified":"2016-08-06T22:21:40","modified_gmt":"2016-08-06T14:21:40","slug":"%e5%9f%ba%e4%ba%8ejquery%e6%89%8b%e6%9c%ba%e6%89%8b%e5%8a%bf%e5%b0%81%e8%a3%85","status":"publish","type":"post","link":"https:\/\/sdeno.com\/?p=5201","title":{"rendered":"\u57fa\u4e8ejquery\u624b\u673a\u624b\u52bf\u5c01\u88c5"},"content":{"rendered":"<p>\u624b\u673a \u767e\u5ea6 touch<\/p>\n<p>\u7981\u7528\u957f\u6309\u6587\u672c\u88ab\u9009\u4e2d<\/p>\n<pre>*{\r\n-webkit-touch-callout:none;\r\n -moz-user-select: none; \/*\u706b\u72d0*\/\r\n -webkit-user-select: none; \/*webkit\u6d4f\u89c8\u5668*\/\r\n -ms-user-select: none; \/*IE10*\/\r\n -khtml-user-select: none; \/*\u65e9\u671f\u6d4f\u89c8\u5668*\/\r\n user-select: none;\r\n}<\/pre>\n<p>&nbsp;<\/p>\n<p>touchstart \/ touchmove \/ touchend \/ touchcancel \u662fhtml5\u4e3a\u79fb\u52a8\u8bbe\u5907\u63d0\u4f9b\u7684\u624b\u52bf\u89e6\u53d1\u4e8b\u4ef6<\/p>\n<p>\u5f53\u4e00\u4e9b\u66f4\u9ad8\u7ea7\u522b\u7684\u4e8b\u4ef6\u53d1\u751f\u7684\u65f6\u5019\uff08\u5982\u7535\u8bdd\u63a5\u5165\u6216\u8005\u5f39\u51fa\u4fe1\u606f\uff09\u4f1a\u53d6\u6d88\u5f53\u524d\u7684touch\u64cd\u4f5c\uff0c\u5373\u89e6\u53d1ontouchcancel\u3002\u4e00\u822c\u4f1a\u5728ontouchcancel\u65f6\u6682\u505c\u6e38\u620f\u3001\u5b58\u6863\u7b49\u64cd\u4f5c\u3002<\/p>\n<p>\u6848\u4f8b\uff1a<\/p>\n<pre>&lt;div ontouchstart=\"fn()\"&gt;&lt;\/div&gt;<\/pre>\n<p>\u6216\u8005<\/p>\n<pre>$('div').on('touchstart',function(){});<\/pre>\n<p>\u957f\u6309tap\u601d\u8def\uff1a<br \/>\n\u5229\u7528touchstart,\u624b\u6307\u653e\u5728\u624b\u673a\u5c4f\u5e55\u4e0a\u4f46\u4e0d\u62ff\u8d77\u8fd9\u6837\u89e6\u53d1\u4e86touchstart\uff0c\u5728\u8fd9\u8fc7\u7a0b\u4e2d\u6267\u884c\u4e00\u4e2afn,\u6b64fn\u53c8\u4e0d\u65ad\u7684\u81ea\u8c03\u7528\u6267\u884c\u76f8\u5e94\u7684\u903b\u8f91\uff0c\u76f4\u5230\u624b\u6307\u4ece\u5c4f\u5e55\u4e2d\u62ff\u8d77\u89e6\u53d1touchend\u548ctouchcencel\uff0c\u7ed3\u675f\u6b64fn\u7684\u8c03\u7528\u3002<br \/>\n\u6ce8\u610f\u8981\u505abug\u5904\u7406\uff0c\u5728\u6ed1\u52a8\u7684\u65f6\u5019\u5c31\u7981\u6b62\u957f\u6309\u89e6\u53d1\u3002<\/p>\n<p>&nbsp;<\/p>\n<pre><span style=\"color: #ff0000;\">\/\/\u957f\u6309<\/span>\r\nfunction $tap(dom,fn){\r\n   $(dom).on('touchstart',function(e){\r\n      var touch_time=new Date()\/1000; \/\/\u8bb0\u5f55\u624b\u6307\u653e\u5728\u5c4f\u5e55\u4e0a\u7684\u65f6\u95f4\r\n\r\n      tap_run();\r\n      function tap_run(){\r\n          e.preventDefault();\r\n          e.stopPropagation();\r\n          var nowtime=new Date()\/1000;\r\n          var move_time= nowtime-touch_time;\r\n          $.globalEval(\"var time_id=null\");\r\n          time_id=setTimeout(tap_run,100);\r\n          $(this).on('touchmove',function(){ \/\/\u6ed1\u52a8\u7684\u65f6\u5019\u7981\u6b62\u957f\u6309\u6548\u679c\u89e6\u53d1\r\n            $('#p2').text('\u6ed1\u52a8');\r\n            clearTimeout(time_id);\r\n          });\r\n          if(move_time&gt;1){ \/\/\u624b\u6307\u653e\u5728\u5c4f\u5e55\u4e0a\u5927\u4e8e1\u79d2\u540e\u89e6\u53d1\u957f\u6309\u6548\u679c\r\n             (fn)();\r\n             clearTimeout(time_id);\r\n          }\r\n       }\r\n\r\n   });\r\n }\r\n\r\n\r\n\u8c03\u7528\uff1a\r\n$tap('body',function(){\r\n   $('#p1').text('\u957f\u6309');\r\n});<\/pre>\n<p>\u957f\u6309\u6848\u4f8b\uff1a<\/p>\n<p><a href=\"https:\/\/sdeno.com\/wp-content\/uploads\/2016\/08\/tap\/tap.html\" target=\"_blank\">https:\/\/sdeno.com\/wp-content\/uploads\/2016\/08\/tap\/tap.html<\/a><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u624b\u673a \u767e\u5ea6 touch \u7981\u7528\u957f\u6309\u6587\u672c\u88ab\u9009\u4e2d *{ -webkit-touch-callout:none; -m [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[24,11],"tags":[],"class_list":["post-5201","post","type-post","status-publish","format-standard","hentry","category-jquery","category-11"],"_links":{"self":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts\/5201","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5201"}],"version-history":[{"count":0,"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts\/5201\/revisions"}],"wp:attachment":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5201"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5201"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5201"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}