这是按钮:
<input type="submit" name="submitbutton" value=" black "><input>
我想将值“ black”更改为“ white”,但我不能。如何通过时尚改变价值?
最佳答案
时尚是附加组件/扩展,仅允许您注入CSS。该按钮的value
是JavaScript / DOM属性;时尚不能改变那些。
您需要安装Greasemonkey(Firefox)或Tampermonkey(Chrome)。
然后,您可以运行此用户脚本来更改该值:
// ==UserScript==
// @name _YOUR_SCRIPT_NAME
// @include http://YOUR_SERVER.COM/YOUR_PATH/*
// @grant GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
introduced in GM 1.0. It restores the sandbox.
*/
var btn = document.querySelector ("input[name='submitbutton']");
if (btn) {
btn.value = "White";
}
else {
alert ("From GM script: Button not found");
}
关于css - 如何通过时尚的方式更改按钮值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18783402/