网页是用jQuery Mobile做的,按钮是一个a标签,a标签里面嵌套了一个img标签。监听的是taphold事件。
高洛峰2017-04-10 14:55:03
要兼容的吧
css
a, img { -webkit-touch-callout: none; -ms-touch-callout: none; -moz-touch-callout: none; -o-touch-callout: none; touch-callout: none; }
实在不行用js去实现
js
document.body.oncontextmenu=document.body.ondragstart= document.body.onselectstart=document.body.onbeforecopy=function(){ return false; }; document.body.onselect=document.body.oncopy=document.body.onmouseup=function(){ document.selection.empty(); };
jq 写法?好像jq没有添加这个contextmenu方法你去看jq 2.0有没有,不过JSLite有哦
js
$('#box').on('contextmenu',function(e){ replyRightMenu(e); if ( e && e.preventDefault ) e.preventDefault(); else window.event.returnValue = false; e.cancelBubble = true; return false; });
迷茫2017-04-10 14:55:03
你想要 a 的什麼效果,touch highlight?
img 不是用來做 ui 的,img 是網頁信息的一部分。ui 請用 css 設置 background
只要用 css 做就不會有這個問題了。