我想知道如何使用jQuery循环html菜单,就像在文本字段中一样。
$("#table input['type=text']").each(function(){
});
如何为下拉菜单执行相同操作?
答案 0 :(得分:4)
只需更改选择器以匹配<select>
元素中的元素,即<option>
元素:
$("#select option").each(function(){
});
答案 1 :(得分:0)
循环浏览菜单项或任何元素只需指定要循环的类或元素。
列表:
$("#menu li").each(function(){
alert($(this).val()); // Alert demonsatrating option value
});
下拉的
$("#menu option").each(function(){
alert($(this).val()); // Alert demonsatrating option value
});