admin管理员组文章数量:1344596
I have several textboxes which I need to check before post them back. I do this with jQuery using each function. When the submit button is pressed (LinkButton1) I iterate over the textboxes and check they values:
<asp:textbox id="txt1" class="tocheck" runat="server />
<asp:textbox id="txt2" class="tocheck" runat="server />
<asp:textbox id="txt3" class="tocheck" runat="server />
$('#LinkButton1').click(function () {
var error = false;
$.each('.tocheck', function (i, v) {
checkVal(v.val());
});
});
But a runtime error is thrown saying v is undefined:
How can I retrieve the textbox value?
Thank you.
I have several textboxes which I need to check before post them back. I do this with jQuery using each function. When the submit button is pressed (LinkButton1) I iterate over the textboxes and check they values:
<asp:textbox id="txt1" class="tocheck" runat="server />
<asp:textbox id="txt2" class="tocheck" runat="server />
<asp:textbox id="txt3" class="tocheck" runat="server />
$('#LinkButton1').click(function () {
var error = false;
$.each('.tocheck', function (i, v) {
checkVal(v.val());
});
});
But a runtime error is thrown saying v is undefined:
How can I retrieve the textbox value?
Thank you.
Share Improve this question edited Nov 21, 2012 at 16:17 anmarti asked Nov 21, 2012 at 16:12 anmartianmarti 5,14310 gold badges61 silver badges96 bronze badges 4-
I don't think you have provided enough HTML source. Your
each
iterates through.text
, which I cannot see in your source code? – Curtis Commented Nov 21, 2012 at 16:13 - I was mistaken typing the code, text means toeach. Post updated. – anmarti Commented Nov 21, 2012 at 16:14
-
Which version of jQuery are you using? With jQuery 1.7.1, it parses
'.tocheck'
as an array of letters (i = 0 -> v = '.', i = 1 -> v = 't'...). You have an$
missing perhaps? – Samuel Caillerie Commented Nov 21, 2012 at 16:17 - Dont be confuse with $().each() and $.each() – A. Wolff Commented Nov 21, 2012 at 16:24
6 Answers
Reset to default 6You don't need to pass in v
- remove it.
And use $(this)
instead.
I.E
$('#LinkButton1').click(function () {
var error = false;
$('.tocheck').each( function () {
checkVal($(this).val());
});
});
The issue is that you aren't passing in a collection correctly.
$('#LinkButton1').click(function () {
var error = false;
$.each('.text', function (i, v) { // <-- you are passing in a STRING not a collection of elements
checkVal(v.val());
});
});
try
$('#LinkButton1').click(function () {
var error = false;
$.each($('.text'), function (i, v) {
checkVal($(v).val());// <-- need to wrap in jQuery to use jQuery methods
});
});
you got a error in the class selector. change it to
$(".tocheck").each(function(i, v){
checkVal($(v).val());
})
Firstly
$.each('.tocheck', function (i, v) {
checkVal(v.val());
});
supposed to be either
$('.tocheck').each(function (i, v) {
checkVal(v.value);
});
' OR /
$.each( $('.tocheck'), function (i, v) {
checkVal(v.value);
});
Secondly v here is the DOM object and you are trying to use jQuery method on it .. That's the reason for the error..
So v.val()
supposed to be
v.value
OR $(v).val();
OR this.value
OR $(this).val();
The $.each
function designed for mostly value arrays like intergers or string that s why v is value not item. so you should use each jQuery array as below.
$(".tocheck").each(function (index, item)
{
alert($(item).val());
});
$('.tocheck').each( function () {
checkVal($(this).val());
});
本文标签: javascriptjQueryeach(valuesfunction(iv)) Why v is undefinedStack Overflow
版权声明:本文标题:javascript - jQuery.each(values, function(i,v){ ... }) Why v is undefined? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743766521a2535325.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论