gpt4 book ai didi

点击后Jquery循环

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

我正在使用 Jquery 提交表单。我想在用户单击提交按钮以获取选择选项后循环浏览表单。有许多不同的选择字段。选择选项是使用 PHP 生成的。

HTML 示例:

<select id="selectHome_1">
<option></option>
</select>

<select id="selectHome_2">
<option></option>
</select>

<inpupt type="submit" id="update" />

JQuery

$("#update").click(function() {        
//Loop through all select fields
$("input[id^='selectHome_']").each(function(){
//Production code will do other things
alert('test');//Test to see if it works...
});
});

搜索id=selectHome_的代码不起作用(警报框从不显示)。

任何想法将不胜感激。

干杯!

最佳答案

您忘记了输入前面的::

$(":input[id^='selectHome_']").each();

http://api.jquery.com/input-selector/

关于点击后Jquery循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2120795/

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