我正在使用国际电话输入js从下拉列表中检测国家/地区,在您点击它时显示国家标志显示整个下拉列表,但是在moile上看不到标志图像一切正常,css背景位置也没关系但是没有看到。
以下是演示http://jackocnr.com/intl-tel-input.html的链接,这是我的代码:
jQuery("#home_number").intlTelInput({
allowExtensions: true,
//autoFormat: false,
//autoHideDialCode: false,
//autoPlaceholder: false,
defaultCountry: "auto",
setNumber : "Telephone number",
geoIpLookup: function(callback) {
$.get('http://ipinfo.io', function() {}, "jsonp").always(function(resp) {
var countryCode = (resp && resp.country) ? resp.country : "";
callback(countryCode);
});
},
nationalMode: false,
numberType: "MOBILE",
//onlyCountries: ['us', 'gb', 'ch', 'ca', 'do'],
//preferredCountries: ['cn', 'jp'],
utilsScript: "/js/utils.js"
});