當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery Mobile Collapsibleset initSelector用法及代碼示例


用法:

initSelector
類型:String
默認:null

collapsibleset 小部件的默認 initSelector 是:

":jqmData(role='collapsibleset')"

此選項在 1.4.0 中已棄用,並將在 1.5.0 中刪除。

不推薦使用 collapsibleset 小部件的 initSelector 選項 ( ":jqmData(role='collapsible-set')" ) 的舊值。從 jQuery Mobile 1.5.0 開始,隻有具有該屬性的小部件data-role="collapsibleset"將作為可折疊集小部件進行增強。

從 jQuery Mobile 1.4.0 開始,initSelector 不再是小部件選項。相反,它直接在小部件原型上聲明。因此,您可以通過處理 mobileinit 事件並覆蓋原型上的 initSelector 來指定自定義值:

$( document ).on( "mobileinit", function() {
  $.mobile.collapsibleset.prototype.initSelector = "div.custom";
});

注意: 請記住在加載 jQuery 之後、加載 jQuery Mobile 之前附加 mobileinit 處理程序,因為該事件是作為 jQuery Mobile 加載過程的一部分觸發的。

此選項的值是一個 jQuery 選擇器字符串。框架根據此選項的值選擇元素,並在每個生成的元素列表上實例化 collapsibleset 小部件。

(不推薦使用的版本:1.4.0)

相關用法


注:本文由純淨天空篩選整理自jquerymobile.com大神的英文原創作品 Collapsibleset initSelector。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。