我正在使用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 _ 的代码无效(警告框从不显示)。
非常感谢任何想法。
干杯!
答案 0 :(得分:3)
答案 1 :(得分:2)
使用
$("select[id^='selectHome_']")
并使用
进行测试alert($("select[id^='selectHome_']").length)