20.1 某些密码输入框不支持copy/paste
http://scz.617.cn/misc/201205020701.txt
Q:
我用的是Firefox,在某电商网站注册帐号时,发现登录密码、确认密码两个输入框 无法粘贴。我很清楚copy/paste带来的一系列安全隐患,甭给我说这个,我就是想复 制、粘贴密码,怎么办?
A: scz@nsfocus 2012-05-02 07:01
呼出Firefox插件Firebug,用箭头按钮点击查看这种不支持copy/paste的输入框,发 现如下HTML代码:
<input type="password" onpaste="return false" ... class="input_text" id="txtPassword" maxlength="20" name="txtPassword">
将onpaste="return false"删除,之后该输入框支持copy/paste。
A: tk@nsfocus 2012-05-03 10:51
对于Chrome,可以按Ctrl+Shift+I,进入开发者模式。选中这种不支持copy/paste的 输入框,右键"审查元素",自动定位到相应的HTML代码。右键选中HTML代码,有各种 编辑选项,可以对当前页面进行修改。