gpt4 book ai didi

javascript - 使用 Javascript 更改文本框中的值

转载 作者:行者123 更新时间:2023-12-01 02:14:05 25 4
gpt4 key购买 nike

<input id="NameAjax" class="ac_input" type="text" value="">

并使用jquery:

).click(function(e) { 
document.getElementById("NameAjax").value = 1;
}

但是点击后该值不会改变:

<input id="NameAjax" class="ac_input" type="text" value="">

我正在寻找看起来完全像这样的输出:

<input id="NameAjax" class="ac_input" type="text" value="1">

How to fix it ?

最佳答案

$("#elementID").on('click', function() {
$("#NameAjax").val('1');
});

关于javascript - 使用 Javascript 更改文本框中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8905006/

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