jquerymobile 单选按钮值丢失?
我正在测试一个小型网络应用程序,之前它有效:
if ($(this).is(':radio') && $(this).is(':checked'))
{
val = $(this).val();
saveThis = true;
} else if ($(this).is(':checkbox') && $(this).is(':checked')) {
val = true;
saveThis = true;
} else if (($(this).is(':checkbox') || $(this).is(':radio'))) {
saveThis = false;
} else {
val = $(this).val();
saveThis = true;
}
这是表单:
<div data-role="fieldcontain">
<fieldset data-role="controlgroup">
<legend>Capture Type:</legend>
<input id="capture_type_onsite" name="capture_type" type="radio" value="onsite" />
<label for="capture_type_onsite" style="width: 200px;">OnSite</label>
<input id="capture_type_phone" name="capture_type" type="radio" value="phone" />
<label for="capture_type_phone" style="width: 200px;">Phone</label>
</fieldset>
</div>
但是现在,当我执行 console.log($(this))
($this 是表单元素) ,我得到:
<input id="contact_type_member" name="contact_type" type="radio" value>
这是上面的代码,其中包含一些 console.log:
if ($(this).is(':radio') && $(this).is(':checked'))
{
console.log('Radio checked: '+$(this).attr('name')+' '+$(this).val());
console.log($(this));
val = $(this).val();
saveThis = true;
} else if ($(this).is(':checkbox') && $(this).is(':checked')) {
console.log('Checkbox checked: '+$(this).attr('name')+' '+$(this).val());
val = true;
saveThis = true;
} else if (($(this).is(':checkbox') || $(this).is(':radio'))) {
console.log('Checkbox or radio NOT checked: '+$(this).attr('name')+' '+$(this).val());
saveThis = false;
} else {
console.log('OTHER input: '+$(this).attr('name')+' '+$(this).val());
val = $(this).val();
saveThis = true;
}
这是 is(:radio) is(:checked) -- 第一个 if 语句 -- 显示的内容:
Radio checked: capture_type
[<input id="capture_type_onsite" name="capture_type" type="radio" value>]
我正在尝试使用 localStorage 保存(我创建所有表单元素的对象,然后使用 JSON.stringify 保存它,然后根据他们选择的元素重新填充记录。这一切在我实现 jQuery Mobile 之前都有效,所以我猜它一定是对这些值做了一些事情,但我不确定。从调试语句中可以看到,到达此值时该值已为空。
提前致谢, 汉斯
I have a small web app I'm testing and previously this worked:
if ($(this).is(':radio') && $(this).is(':checked'))
{
val = $(this).val();
saveThis = true;
} else if ($(this).is(':checkbox') && $(this).is(':checked')) {
val = true;
saveThis = true;
} else if (($(this).is(':checkbox') || $(this).is(':radio'))) {
saveThis = false;
} else {
val = $(this).val();
saveThis = true;
}
Here is the form:
<div data-role="fieldcontain">
<fieldset data-role="controlgroup">
<legend>Capture Type:</legend>
<input id="capture_type_onsite" name="capture_type" type="radio" value="onsite" />
<label for="capture_type_onsite" style="width: 200px;">OnSite</label>
<input id="capture_type_phone" name="capture_type" type="radio" value="phone" />
<label for="capture_type_phone" style="width: 200px;">Phone</label>
</fieldset>
</div>
But now, when I do console.log($(this))
($this being the form element), I get:
<input id="contact_type_member" name="contact_type" type="radio" value>
Here is the code from above with some console.log's thrown in:
if ($(this).is(':radio') && $(this).is(':checked'))
{
console.log('Radio checked: '+$(this).attr('name')+' '+$(this).val());
console.log($(this));
val = $(this).val();
saveThis = true;
} else if ($(this).is(':checkbox') && $(this).is(':checked')) {
console.log('Checkbox checked: '+$(this).attr('name')+' '+$(this).val());
val = true;
saveThis = true;
} else if (($(this).is(':checkbox') || $(this).is(':radio'))) {
console.log('Checkbox or radio NOT checked: '+$(this).attr('name')+' '+$(this).val());
saveThis = false;
} else {
console.log('OTHER input: '+$(this).attr('name')+' '+$(this).val());
val = $(this).val();
saveThis = true;
}
Here's what the is(:radio) is(:checked) -- first if statement -- shows:
Radio checked: capture_type
[<input id="capture_type_onsite" name="capture_type" type="radio" value>]
I'm trying to save with localStorage (I create an object of all form elements, then save it using JSON.stringify), then re-populate records based on which one they chose. This all worked before I implemented jQuery Mobile so I guess it must be doing something with the values, but I'm not sure. As you can see from the debugging statement, the value is empty by the time it gets to this.
Thanks in advance,
Hans
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
实时示例:http://jsfiddle.net/WSqTS/9/
try:
Live Example: http://jsfiddle.net/WSqTS/9/