jquerymobile 单选按钮值丢失?

发布于 2024-11-08 01:32:08 字数 2492 浏览 1 评论 0原文

我正在测试一个小型网络应用程序,之前它有效:

    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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与之呼应 2024-11-15 01:32:08

尝试:

var radio_val = $('input[name=capture_type]:checked').val();
alert('Radio Value: '+radio_val);

实时示例:http://jsfiddle.net/WSqTS/9/

try:

var radio_val = $('input[name=capture_type]:checked').val();
alert('Radio Value: '+radio_val);

Live Example: http://jsfiddle.net/WSqTS/9/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文