var el = $('#SelectID');
// Select the relevant option, de-select any others
el.val("Man").attr('selected', true).siblings('option').removeAttr('selected');
// jQM refresh
el.selectmenu("refresh", true);
// Select the relevant option, de-select any others
el.val("Man").attr('selected', true).siblings('option').removeAttr('selected');
// jQM refresh
el.selectmenu("refresh", true);
留言