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>
相關文章
相關標籤/搜索