阻止【默认事件】 移动端touchmove touchstart mousedown mousemove
document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);
//阻止默认行为 document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false); //阻止默认行为 $(document).on("touchstart touchmove mousedown mousemove",function(event){ var tag = $(event.target).parents()[0].tagName; var thistag = event.target.tagName; if ( tag != "A" && tag != "INPUT" && tag != "TEXTAREA" && tag != "SELECT" && thistag != "A" && thistag != "INPUT" && thistag != "TEXTAREA" && thistag != "SELECT" ) { event.preventDefault(); } })
给心灵一个纯净空间,让思想,情感,飞扬!