jqm 1.3.0 slider refresh not working

jqm 1.3.0 slider refresh not working

hello everyone,

yesterday i update jqm to 1.3.0, but I found that slider refresh does not work, my code:
the js excuted but ui not refreshed
  1.     <button id="change-button" data-icon="add" data-theme="d"></button>

  2.     <select name="weather-option" id="weather-switch" data-role="slider" data-mini="true">
  3.         <option value="off" selected="selected">关闭</option>
  4.         <option value="on">打开</option>
  5.     </select>
  6. <script type="text/javascript">
  7.     $("#change-button").on("click", function(event) {
  8.         $('#weather-switch').find("option:selected").removeAttr("selected");
  9.         $('#weather-switch>[value=on]').attr('selected', 'true');
  10.         console.log("refresh");
  11.         $('#weather-switch').trigger('create');
  12.     });
  13. </script>