clear input

clear text of text inputs when middle clicked.

目前为 2015-10-21 提交的版本。查看 最新版本

// ==UserScript==
// @name        clear input
// @description clear text of text inputs when middle clicked.
// @namespace   855495743
// @author      Jenie
// @include     *
// @version     0.1
// @grant       none
// @run-at      document-end
// ==/UserScript==

var inputs = Array.prototype.slice.call(document.querySelectorAll('input, textarea'));
inputs.forEach(function(i) {
    i.addEventListener("mousedown", function(e) {
        if (e.which === 2) {
        	e.preventDefault();
            e.target.value = '';
        }
    });
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址