NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name 鼠标移入显示密码 // @version 0.2 // @description 鼠标移动到页面上的password密码框可以查看输入(临时改为text) // @author fn // @require https://cdn.bootcss.com/jquery/2.2.3/jquery.min.js // @updateURL https://openuserjs.org/meta/fn/鼠标移入显示密码.meta.js // @include * // ==/UserScript== (function () { //使用严格模式 'use strict'; //获取所有password,加入mouseover和mouseout事件 var inputs = $("input[type=password]").mouseover(function () { this.type = 'text'; }).mouseout(function () { this.type = 'password'; }); })();