2015-06-08 81 views
0

我在jQuery Mobile的以下可摺疊的小部件:窗口小部件不工作 - jQuery的移動

enter image description here

當我更新的頁面(按F5),這個小部件不工作了,因爲你可以看到在圖片:

enter image description here

下面是代碼:

<div data-role="main" class="ui-content"> 
      <div data-role="collapsible"> 
       <h1> 
        What belongs to you but others use it more than you do? <br>(Click 
        for the answer) 
       </h1> 
       <p>Your name!</p> 
      </div> 
     </div> 

回答

0

你可以試試 '清新' 收縮元件:

$(document).on("pageinit", function() { 
     $("div[data-role='collapsible']").collapsible(); 
}); 

希望幫助!