用readOnly後按Backspace鍵會執行到上一步

用readOnly後按Backspace鍵會執行到上一步。能夠經過js禁止spa

function document.onkeydown() {
        if (event.keyCode == 8) {  //alert(document.activeElement.type);
            if (document.activeElement.type.toLowerCase() == "textarea" || document.activeElement.type.toLowerCase() == "text") {
                if (document.activeElement.readOnly == false)
                    return true;
            }
            return false;
        }
    }io

相關文章
相關標籤/搜索