屏蔽选中

/**
 *  屏蔽选中
*/


    document.onselectstart = function (event) {
        if (window.event) {
            event = window.event;
        }
        try {
            var the = event.srcElement;
            if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")) {
                return false;
            }
            return true;
        } catch (e) {
            return false;
        }
    }
posted @ 2021-10-13 11:06  前端搬运工bug  阅读(26)  评论(0编辑  收藏  举报