用法:
initSelector
类型:Selector
默认:
See below
textinput 小部件的默认 initSelector
是:
""input[type='text'], input[type='search'], :jqmData(type='search'), input[type='number'], :jqmData(type='number'), input[type='password'], input[type='email'], input[type='url'], input[type='tel'], textarea, input[type='time'], input[type='date'], input[type='month'], input[type='week'], input[type='datetime'], input[type='datetime-local'], input[type='color'], input:not([type]), input[type='file']""
注意:此选项在 1.4.0 中已弃用,并将在 1.5.0 中删除。
从 jQuery Mobile 1.4.0 开始,initSelector
不再是小部件选项。相反,它直接在小部件原型上声明。因此,您可以通过处理mobileinit
事件并覆盖initSelector
在原型上:
$( document ).on( "mobileinit", function() {
$.mobile.textinput.prototype.initSelector = "div.custom";
});
注意: 请记住在加载 jQuery 之后、加载 jQuery Mobile 之前附加 mobileinit
处理程序,因为该事件是作为 jQuery Mobile 加载过程的一部分触发的。
此选项的值是一个 jQuery 选择器字符串。框架根据此选项的值选择元素,并在每个生成的元素列表上实例化 textinput 小部件。
(不推荐使用的版本:1.4.0)相关用法
- JQuery Mobile Textinput clearBtnText用法及代码示例
- JQuery Mobile Textinput defaults用法及代码示例
- JQuery Mobile Textinput preventFocusZoom用法及代码示例
- JQuery Mobile Textinput keyupTimeoutBuffer用法及代码示例
- JQuery Mobile Textinput disable用法及代码示例
- JQuery Mobile Textinput clearBtn用法及代码示例
- JQuery Mobile Textinput enable用法及代码示例
- JQuery Mobile Textinput autogrow用法及代码示例
- JQuery Mobile Textinput theme用法及代码示例
- JQuery Mobile Textinput destroy用法及代码示例
- JQuery Mobile Textinput option用法及代码示例
- JQuery Mobile Textinput enhanced用法及代码示例
- JQuery Mobile Textinput disabled用法及代码示例
- JQuery Mobile Textinput wrapperClass用法及代码示例
- JQuery Mobile Textinput corners用法及代码示例
- JQuery Mobile Textinput refresh用法及代码示例
- JQuery Mobile Textinput create( event, ui )用法及代码示例
- JQuery Mobile Textinput classes用法及代码示例
- JQuery UI Tabs event用法及代码示例
- JQuery Mobile Toolbar hide用法及代码示例
- JQuery UI Tabs option用法及代码示例
- JQuery UI Tooltip position用法及代码示例
- JQuery UI Tooltip disabled用法及代码示例
- JQuery Mobile Toolbar addBackBtn用法及代码示例
- JQuery UI Tooltip items用法及代码示例
注:本文由纯净天空筛选整理自jquerymobile.com大神的英文原创作品 Textinput initSelector。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。