HTML 中什么命令可以禁止鼠标右键点击

html-css09

HTML 中什么命令可以禁止鼠标右键点击,第1张

<!-- 禁用右键: -->

<script>

function stop(){ return false}

document.oncontextmenu=stop

</script>

把这个方法在页面head 里面就可以了

<!-- 禁用右键: -->

<script>

function stop(){ return false}

document.oncontextmenu=stop

</script>

把这个方法在页面head 里面就可以了