jquery mobile - set select/option values

后端 未结 2 1054
广开言路
广开言路 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:24

    When programmatically manipulating elements like select fields in jQuery Mobile, once you've made the relevant selection, you need to refresh the element so that the user interface is updated. Here's an example snippet which sets a value in a select field, and then updates it:

    // 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');
    
    // jQM refresh
    el.selectmenu("refresh", true);
    

    So it's that last line I suspect you need.

提交回复
热议问题