js禁用頁面所有輸入框以及點選事件

竹溪墨軒苑發表於2020-12-08
 $("input").on('focus', function () {
        $(this).blur();
    });
    $("textarea").on('focus', function () {
        $(this).blur();
    });

    $("body").find("*").each(function () {
        $(this).off("click").attr("onclick", "");
        $(this).on("click", function (event) {
            event.preventDefault();
        })
    })

相關文章