I have a hidden form field:
<input type=hidden id=blah1 value=true />
I have abutton, when clicked I do:
$("#b1").bind("click", function(){
$("#blah1").attr("value", "false");
});
But when I get the form value on the server side, it is 'true'.
Am I doing something wrong?
I even did this:
e.preventDefault();
$("#blah1").attr("value", "false");
alert( $("#blah1").attr("value") );
It alerted the value 'false'.
I have a hidden form field:
<input type=hidden id=blah1 value=true />
I have abutton, when clicked I do:
$("#b1").bind("click", function(){
$("#blah1").attr("value", "false");
});
But when I get the form value on the server side, it is 'true'.
Am I doing something wrong?
I even did this:
e.preventDefault();
$("#blah1").attr("value", "false");
alert( $("#blah1").attr("value") );
It alerted the value 'false'.
Share Improve this question edited Jan 25, 2011 at 22:55 skaffman 404k96 gold badges824 silver badges775 bronze badges asked Jan 25, 2011 at 20:10 BlankmanBlankman 268k332 gold badges797 silver badges1.2k bronze badges 3- 2 What about using the jquery function .val() instead of attr()? api.jquery./val – Fran Verona Commented Jan 25, 2011 at 20:19
- Any chance you have more than one element with the same ID? – user113716 Commented Jan 25, 2011 at 20:24
- It seemed to work when I tested id. Try to wrap your html element attributes values in quotes : key="value", maybe that's what's messing with you. – gion_13 Commented Jan 25, 2011 at 21:17
2 Answers
Reset to default 5Even aside from there being no 'name' attribute, you are setting the value to "false" as in a string, and a non-empty string will return true EVERY TIME.
$("#blah1").attr("value", "false");
should instead be
$("#blah1").attr("value", false);
You did include the 'name' attribute in your real code, no?
<input type=hidden id=blah1 value=true name=blah1 />
This still doesn't explain why you see "true" on the server side. If you did include the "name" attribute on your hidden field, please post your server-side code.
Running the code you have posted here, once the "name" attribute is added, achieved the expected "False" result.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743700601a4492504.html
评论列表(0条)