使用Javascript特性Testin确定CSS属性支持
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Javascript特性Testin确定CSS属性支持相关的知识,希望对你有一定的参考价值。
Learn how to test for CSS property support in specific browsers using this simple javascript technique.
var el = document.createElement("div"); if(typeof el.style.opacity == "string") { //Your browser supports the CSS Opacity property"; } else if (typeof el.style.filter == "string"){ //Your browser doesn't support the CSS Opacity property but does support IE filters"; } else { //"Your browser doesn't support the CSS Opacity property"; }
以上是关于使用Javascript特性Testin确定CSS属性支持的主要内容,如果未能解决你的问题,请参考以下文章
[转]JavaScript快速检测浏览器对CSS3特性的支持