android浏览器不兼容的一些css和js(持续更新)

来源:互联网 发布:美女网络直播间 编辑:程序博客网 时间:2024/06/02 07:14

css

E:empty  系统自带浏览器不支持,其它(QQ、UC、谷歌)均支持。(测试环境4.0)


js

history.pushState(params, title, url)  UC不支持,其它(QQ、系统自带、谷歌)支持。可用以下方式兼容!

util.pushState = function(params, title, url) {if(history.pushState) {history.pushState(params, title, url);}else {location.href = url;}};

原创粉丝点击