js禁止键盘输入和鼠标点击

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>

<input type="text" autofocus="autofocus"/>

<script>

    /**
     * 鼠标右键禁用
     */
    document.oncontextmenu = new Function("event.returnValue=false");
    document.onselectstart = new Function("event.returnValue=false");

    /**
     * 鼠标左键禁用
     */
    document.onmousedown = new Function("return false");

    /**
     * 键盘禁用
     */
    document.onkeypress = new Function("return false");

</script>

</body>
</html>
相关文章
相关标签/搜索