gpt4 book ai didi

javascript - 如何使用 JScript 设置按钮的文本?

转载 作者:行者123 更新时间:2023-11-28 11:18:56 25 4
gpt4 key购买 nike

我正在尝试在 JScript 函数中的按钮上设置文本。我正在使用这样的 JScript 函数...

    function myfunction(sender, eventArgs)
{
wanted_text = window.source_text_field.get_displayText();

if (document.getElementById("my_span_element") != null)
{
document.getElementById("my_span_element").innerText = wanted_text;
}

if (document.getElementById("my_button") != null)
{
document.getElementById("my_button").text = wanted_text;
}

}

相关控件的定义如下...

    <span id="my_span_element" class="some_class"></span>

<asp:Button id="my_button"
runat="server"
class="some_other_class"
text=""
Width="48"
Height="25"
onclick="do_foo"/>

span 元素中的文本设置正确,但按钮不受影响。我还尝试过 innerTextValueText,并尝试使用 this question 的答案。但没有效果。

有人能看到我忽略的内容吗?

最佳答案

更改按钮的.value属性:

document.getElementById("my_button").value = "new value";

关于javascript - 如何使用 JScript 设置按钮的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6900398/

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