本文介绍了如何启用HTML页面上粘贴有锁定"加利福尼亚+ V"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

通常你可以进入网页,这已禁用粘贴从剪贴板中,
像输入密码或信用卡号码,这是非常愚蠢的,
因为谁在内存中保存复杂的密码或CC号码?
人们喜欢用密码饲养员的那些东西。
我发现,问题出在:

\r
\r

... b.bind(粘贴功能(){回报! 1} ...

\r

\r
\r

如何处理呢?
如何解除贴法拦截?


解决方案

想出了脚本 - 你需要打开浏览器控制台,然后执行:

\r
\r

$('*')。每个(函数(){\r
    变量$此= $(本);\r
    $ this.unbind('粘贴');\r
});

\r

\r
\r

需先注入的jQuery,如果没有一个

Often you can enter pages, which has disabled paste from Clipboard,like input password or Credit card numbers, which is very silly,because who keeps in memory complex passwords or CC numbers?People like to use password keepers for those things.I found that problem is in:

... b.bind("paste",function(){return!1} ...

How to deal with it?How to unbind interception of paste method?

解决方案

Came up with script - you need to open browser console and execute:

$('*').each(function(){
    var $this = $(this);
    $this.unbind('paste');
});

Need to inject jQuery first, if there is no one

这篇关于如何启用HTML页面上粘贴有锁定"加利福尼亚+ V"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 06:25
查看更多