我正在使用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);
我似乎无法让它发挥作用
答案 0 :(得分:2)
该按钮的id
不断变化,因此您需要使用其他选择器
你可以尝试:
document.querySelectorAll('input[type=button]')[0].value = 'hello';
或
document.getElementsByClassName('saveAndClose')[0].value = 'hello';