layui table 不兼容苹果系统的
网上找了找发现都好麻烦。
简化了一下
var browser = { versions: function () { var u = navigator.userAgent, app = navigator.appVersion; return { //移动终端浏览器版本信息 ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端 android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或uc浏览器 iPhone: u.indexOf('iPhone') > -1, //是否为iPhone或者QQHD浏览器 iPad: u.indexOf('iPad') > -1, //是否iPad }; }(), } if(browser.versions.ios||browser.versions.iPad){ table.reload('table', { width: window.screen.width-50 }); }
转载请注明出处 AE博客|墨渊 » 关于layui数据表格不兼容ios的问题
发表评论