我想对每个隐藏的输入值执行某些操作,因此我使用jQuery对以下javascript进行了编码。
$.each($("input[type='hidden']"), function (index, value) {
alert(value.val());
});
但我得到他执行错误:value.val is not a function.
我做错了什么?
答案 0 :(得分:11)
这样可行:
$("input[type=hidden]").each(function() {
$(this).val() //do something with
});
答案 1 :(得分:9)