gpt4 book ai didi

javascript - 如何更新所有同名的隐藏字段?

转载 作者:行者123 更新时间:2023-12-03 03:08:55 24 4
gpt4 key购买 nike

我在 html 页面上有多个同名的隐藏字段,如下所示

    <input type="hidden" name="customerID" value="aa190809" />

我需要更新所有具有相同名称的隐藏字段的值,即customerID

如果 html 页面包含带有 customerID 的单个隐藏字段(如下所示),我知道该怎么做(通过 Jquery),但不确定是否存在多个同名的隐藏字段

            if(updatedCsrf !== null) {
var customerIDHidden = $("input[name='customerID']");
if(customerIDHidden !== null) {
customerID.val("some_value");
}
}

最佳答案

你可以这样做:

$("input[name=customerID]").each(function(){
this.value ="new value"
})

this 将引用每个 DOM 元素。您可以通过将 this.value 替换为 $(this).val("new value") 再次将其解析为 jQuery DOM 元素,但因为您只需要更改值使用 javascript vanilla 效果更好

关于javascript - 如何更新所有同名的隐藏字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47027755/

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