最近在做項目中,發現在移動端長按會出現復制黏貼菜單按鈕,經過查詢資料,解決了此問題;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
蘋果端可以css解決:*{-webkit-touch-callout: none;}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
安卓端需要添加js解決:
window.ontouchstart = function(e) {
e.preventDefault();
};