如何通过时尚更改按钮值?

时间:2013-09-13 09:57:08

标签: css button stylish

这是按钮:

<input type="submit" name="submitbutton" value=" black "><input>

我想将“黑色”改为“白色”,但我不能。如何通过时尚来改变价值?

2 个答案:

答案 0 :(得分:1)

您无法使用CSS更改按钮的值。 虽然可以使用JavaScript完成。 此链接可能对您有所帮助 -

javascript change value of button

答案 1 :(得分:0)

时尚是一个附加/扩展,只允许您注入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");
}