0

是否有任何关于刷新单选按钮值的示例,它们存在于一个页面上,并且它们的值从其他页面更改。我尝试了以下方法,但它不起作用。[ using phonegap+jquerymobile+HTML5 ] 以下是页面 2 上存在单选按钮时主页调用的 jquerymobile 语法:-

if (result.rows.item(0).pri==0)
      {

            $('#radio2').prop('checked', true);
     }
      else {

            $('input:radio[id=radio3]').prop('checked', true);

      }

        $("input[type='radio']").checkboxradio();
        $("input[type='radio']").checkboxradio("refresh");

在 Eclipse Android 开发工作室上出现以下错误

在页面初始化之前不能调用刷新。

有什么建议么??

4

1 回答 1

0

you may need to regenerate the widgets (the form element) by .triger("create")

Detail please refer Enhancing new markup from http://demos.jquerymobile.com/1.2.0/docs/pages/page-scripting.html

于 2014-11-04T02:08:46.700 回答