gpt4 book ai didi

jquery - 在 jquery 中设置具有部分名称的所有字段的值

转载 作者:行者123 更新时间:2023-12-01 07:43:51 25 4
gpt4 key购买 nike

我在表单中有一组字段,所有字段的名称都带有前缀。我如何使用 jquery 将它们全部设置为某个值?

最佳答案

您可以使用属性包含选择器[att*=val],或者属性等于或开头,后跟-选择器

6.3.1. Attribute presence and value selectors

[att|=val]

Represents an element with the att attribute, its value either being exactly "val" or beginning with "val" immediately followed by "-" (U+002D)

$("form [name|=prefix]").attr("value", function(i, el) {
return "123"
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form>
<input name="prefix-a" />
<input name="prefix-b" />
<input name="prefix-c" />
</form>

关于jquery - 在 jquery 中设置具有部分名称的所有字段的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42171446/

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