gpt4 book ai didi

jquery - 如何在 jQuery 中选择特定的表单元素?

转载 作者:IT王子 更新时间:2023-10-29 03:26:37 26 4
gpt4 key购买 nike

我有两种这样的形式:

<form id='form1' name='form1'>
<input name='name' id='name'>
<input name='name2' id='name2'>
</form>

<form id='form2' name='form2'>
<input name='name' id='name'>
<input name='name2' id='name2'>
</form>

现在我想在 form2name 字段中插入文本。我正在使用 following jQuery code但它填写 form1name 字段。

$("#name").val('Hello World!');

那么如何只选择特定的表单元素呢?

最佳答案

两次拥有相同的 ID 是无效的,这就是为什么 #name 只找到第一个。

你可以试试:

$("#form2 input").val('Hello World!');

或者,

$("#form2 input[name=name]").val('Hello World!');

如果遇到无效页面并想选择所有 #name,可以使用 id 上的属性选择器:

$("input[id=name]").val('Hello World!');

关于jquery - 如何在 jQuery 中选择特定的表单元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4387319/

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