通过JS更改按钮文本?

时间:2014-12-17 17:35:20

标签: javascript squarespace

我正在使用Squarepace。

我试图改变“认证”这个词。 here

这是剧本:

document.title = "McCann Show & Tell - Please enter the password :)";
document.body.style.background = "#f7a2cc  url('https://dl.dropboxusercontent.com/u/46025079/pattern.jpg') repeat";
document.addEventListener('DOMContentLoaded', function() {
document.getElementById("yui_3_17_2_1_1418836557893_299").value = "hello";
}, false);

这是尝试更改按钮文本的部分

document.addEventListener('DOMContentLoaded', function() {
document.getElementById("yui_3_17_2_1_1418836557893_299").value = "hello";
}, false);

我似乎无法让它发挥作用

1 个答案:

答案 0 :(得分:2)

该按钮的id不断变化,因此您需要使用其他选择器 你可以尝试:

document.querySelectorAll('input[type=button]')[0].value = 'hello';

document.getElementsByClassName('saveAndClose')[0].value = 'hello';