我試圖在拖動圖像時禁用選擇。但它似乎並不奏效。我知道類似questions已被問到,但似乎沒有爲我工作。在圖像上拖動鼠標時禁用選擇
我也嘗試在許多類似的問題中建議在CSS中輸入。
-webkit-touch-callout: none;/*for mobile*/
-webkit-user-select: none;/*for chrome*/
-khtml-user-select: none;/*for safari*/
-moz-user-select: none;/*for Mozilla*/
-ms-user-select: none;/*for mircosoft*/
-o-user-select: none;/*for opera*/
user-select: none;/*base css ,but not work in all browsers*/
使用以下-webkit-user-select:none; –