:i-6ren">
gpt4 book ai didi

jquery - 如何获取 div 元素的所有子输入 (jQuery)

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

HTML:

<div id="panel">
<table>
<tr>
<td><input id="Search_NazovProjektu" type="text" value="" /></td>
</tr>
<tr>
<td><input id="Search_Popis" type="text" value="" /></td>
</tr>
</table>
</div>

我需要选择特定 div 中的所有输入。

这是行不通的:

var i = $("#panel > :input");

最佳答案

在没有大于号的情况下使用它:

$("#panel :input");

> 仅表示元素的直接 子元素,如果您想要所有子元素而不管深度如何,只需使用一个空格即可。

关于jquery - 如何获取 div 元素的所有子输入 (jQuery),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2402707/

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