【PC対応】画像を右クリック保存とドラッグ移動させないやり方 – HTML

Web



なにもしていない状態だと以下の画像を右クリック保存、ドラッグ移動ができます。






 右クリック保存 NGのやり方

<img src=””>の中に oncontextmenu="return false;"を記述します。



<img src="-----/-----/-----" oncontextmenu="return false;"/>






 ドラッグ移動 NGのやり方

<img src=””>の中に onselectstart="return false;"
onmousedown="return false;"
を記述します。



<img src="-----/-----/-----" onselectstart="return false;" onmousedown="return false;"/>






 右クリック保存とドラッグ移動 NGのやり方

<img src=””>の中に oncontextmenu="return false;"

onselectstart="return false;"
onmousedown="return false;"
を記述します。



<img src="-----/-----/-----" oncontextmenu="return false;" onselectstart="return false;" onmousedown="return false;"/>








コメント

タイトルとURLをコピーしました