我为选择字段设置了Chosen plugin,以便用户能够从长列表中进行类型搜索。
虽然我正在为手机开发这款产品,虽然它可以在电脑上正常使用,但它在Apple和Android手机上都被禁用,弹出默认用户界面以供选择输入。
我想在手机上使用这个插件。
答案 0 :(得分:31)
在使用任何插件之前,请尝试检查其范围。
Android或IOS不支持选择,“在iPhone,iPod Touch和Android移动设备上禁用选择”
答案 1 :(得分:15)
browser_is_supported
中的功能chosen.jquery.js
说明它故意避免在Android和iPhone平台上激活(because of several UX issues)。但你可以自己破解它。
AbstractChosen.browser_is_supported = function() {
if (window.navigator.appName === "Microsoft Internet Explorer") {
return document.documentMode >= 8;
}
if (/iP(od|hone)/i.test(window.navigator.userAgent)) {
return false;
}
if (/Android/i.test(window.navigator.userAgent)) {
if (/Mobile/i.test(window.navigator.userAgent)) {
return false;
}
}
return true;
};
答案 2 :(得分:9)
AbstractChosen.browser_is_supported
函数不允许您在移动设备和Internet Explorer上使用此插件,因此您可以自行解决此问题。
在chosen.jquery.js
中找到以下行并评论此代码。现在,所选插件将适用于移动设备。
if (!AbstractChosen.browser_is_supported()) {
return this;
}
if (!AbstractChosen.browser_is_supported()) {
return;
}
答案 3 :(得分:3)
在这里作为后备发布我已实现,因为我依赖ChosenJS插件工作,以便可以应用自定义CSS。希望这有助于其他人。
免责声明:鉴于这个问题,@ dreamweiver的上述答案仍然是接受的答案。
var chosenSelects = $('.ui-select').find('.chosen-select, [chosen]'),
$select, $option;
if (chosenSelects) {
chosenSelects.chosen();
// Check for 'chosen' elements on mobile devices
// -----
// Given that ChosenJS has expressly been disabled from running
// on mobile browsers, the styles have to be applied manually.
// Source: https://github.com/harvesthq/chosen/pull/1388
// -----
// The code below gathers all 'chosen' selectors and adds
// 'chosen-mobile' as a className. This className is then
// used to apply the necessary styles for mobile browsers.
// Within each select, if an 'option' has an empty value,
// then that value will be given 'selected' and 'disabled'
// attributes to act as a placeholder, adopting the text
// in the 'data-placeholder' as the text to be displayed.
if ( /iP(od|hone)/i.test(window.navigator.userAgent)
|| (/Android/i.test(window.navigator.userAgent) && /Mobile/i.test(window.navigator.userAgent)) ) {
chosenSelects.each(function () {
$select = $(this);
$select.addClass('chosen-mobile');
$select.find('option').each(function () {
$option = $(this);
if ( $option.val() == '' ) {
$option
.attr('selected', 'selected')
.attr('disabled', 'disabled')
.text( $select.data('placeholder') );
}
});
});
}
}
然后,我使用.ui-select .chosen-mobile
来应用必要的CSS。
答案 4 :(得分:2)
在平板电脑手机中停用
AbstractChosen.browser_is_supported = function () {
if (window.navigator.appName === "Microsoft Internet Explorer") {
return document.documentMode >= 8;
}
//if (/iP(od|hone)/i.test(window.navigator.userAgent))
if ((/iPhone|iPod|iPad|Android|android|playbook|silk|BlackBerry/).test(navigator.userAgent))
{
return false;
}
if (/Android/i.test(window.navigator.userAgent)) {
if (/Mobile/i.test(window.navigator.userAgent)) {
return false;
}
}
return true;
};
答案 5 :(得分:1)
对我来说就是这条线:
}, AbstractChosen.browser_is_supported = function() {
return "Microsoft Internet Explorer" === window.navigator.appName ? document.documentMode >= 8 : /iP(od|hone)/i.test(window.navigator.userAgent) ? !1 : /Android/i.test(window.navigator.userAgent) && /Mobile/i.test(window.navigator.userAgent) ? !1 : !0
}
改变了,它就像一个魅力。
}, AbstractChosen.browser_is_supported = function() {
return true;
}