gpt4 book ai didi

javascript - 通过JS改变按钮文本?

转载 作者:行者123 更新时间:2023-12-02 16:40:37 26 4
gpt4 key购买 nike

我正在使用 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);

我似乎无法让它工作

最佳答案

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

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

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

关于javascript - 通过JS改变按钮文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27531492/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com