Checking and unchecking radio buttons with Jquery Mobile

后端 未结 5 1439
说谎
说谎 2021-01-02 09:03

I can\'t check a set of checkboxes programatically with jquery mobile, I have the following code:

5条回答
  •  [愿得一人]
    2021-01-02 09:45

    Nothing worked for me except:

    $('#reset').click(function(){
        $('#Store').trigger("click").trigger("click"); // yes... twice
    });
    

    On jQuery Mobile 1.4.2.

提交回复
热议问题