Last active
March 8, 2016 03:18
-
-
Save Sunappnio/4a8a8ccd029bd1ab48e7 to your computer and use it in GitHub Desktop.
(chrome)解决微信网页版使用中,若光标不在输入框,错按退格键导致页面回退,需要重新登录的问题
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name disable backspace key | |
// @author [email protected] | |
// @namespace https://claire.ml | |
// @description prevent web wechat from exit unexpectedly | |
// @include https://wx.qq.com* | |
// @run-at document-end | |
// ==/UserScript== | |
function forbidBackSpace(e) { | |
var ev = e || window.event; //获取event对象 | |
var obj = ev.target || ev.srcElement; //获取事件源 | |
var t = obj.type || obj.getAttribute('type'); //获取事件源类型 | |
//获取作为判断条件的事件类型 | |
var vReadOnly = obj.readOnly; | |
var vDisabled = obj.disabled; | |
//处理undefined值情况 | |
vReadOnly = (vReadOnly === undefined) ? false : vReadOnly; | |
vDisabled = (vDisabled === undefined) ? true : vDisabled; | |
//当敲Backspace键时,事件源类型为密码或单行、多行文本的, | |
//并且readOnly属性为true或disabled属性为true的,则退格键失效 | |
var flag1 = ev.keyCode == 8 && (t == "password" || t == "text" || t == "textarea") && (vReadOnly === true || vDisabled === true); | |
//当敲Backspace键时,事件源类型非密码或单行、多行文本的,则退格键失效 | |
var flag2 = ev.keyCode == 8 && t != "password" && t != "text" && t != "textarea"; | |
//判断 | |
if (flag2 || flag1) return false; | |
} | |
document.onkeydown = forbidBackSpace; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
脚本有bug
更好的解决方法:在新窗口中打开wx.qq.com