// ==UserScript== // @name 提交截拦 // @author billypon // @description 阻止某些输入框按回车时自动提交表单,改为点击默认按钮 // @version 1.4.0 // @namespace http://www.canaansky.com/ // @match http://www.123wzwp.com/down-*.html // @match http://66yp.cc/down-*.html // @match https://www.feemoo.com/down2-*.html // @match http://www.sju.wang/file-*.html // @match http://www.wwp5.com/down-*.html // @run-at document-idle // @grant none // @downloadURL none // ==/UserScript== var input = document.querySelector("#code"), button = document.querySelector("#s1"); console.info("input:", input); console.info("button:", button); if (!(input && button)) return; input.addEventListener("keydown", function (event) { console.info("keyCode:", event.keyCode); if (event.keyCode != 13) return; button.click(); event.preventDefault(); });