jquery mobile - set select/option values

后端 未结 2 1053
广开言路
广开言路 2021-02-07 02:51

am trying to set select/option values using jquery Mobile and can\'t seem to get it working.






        
2条回答
  •  后悔当初
    2021-02-07 03:26

    In some cases you might need to wrap your function to execute on document.ready and initialize the selectmenu. Here is my solution using Ben Poole's example:

    $(document).ready(function(){
    // Grab a select field
    var el = $('#YOUR_SELECT_FIELD');
    
    // Select the relevant option, de-select any others
    el.val('some value').attr('selected', true).siblings('option').removeAttr('selected');
    
    // Initialize the selectmenu
    el.selectmenu();
    
    // jQM refresh
    el.selectmenu("refresh", true);
    });
    

提交回复
热议问题