Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーが画像をドラッグできるようにするスクリプトを作成しました。残念ながら、ほとんどのブラウザーは画像を青色で強調表示します。すべてのブラウザでこの動作を無効にする方法はありますか?
デフォルトのブラウザアクションを防ぐために、mousedown / mousemoveハンドラからfalseを返します(デフォルトのアクションは、mousedragで基になる要素を選択することです)。
編集
私が意味したのはこれでした:
document.onmousemove = function() { // Do your stuff return false; }
見た目が異なる関数があるかもしれませんが、最終的にはreturn false。
return false