使用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.
  1. var el = document.createElement("div");
  2. if(typeof el.style.opacity == "string")
  3. {
  4. //Your browser supports the CSS Opacity property";
  5. } else if (typeof el.style.filter == "string"){
  6. //Your browser doesn't support the CSS Opacity property but does support IE filters";
  7. } else {
  8. //"Your browser doesn't support the CSS Opacity property";
  9. }

以上是关于使用Javascript特性Testin确定CSS属性支持的主要内容,如果未能解决你的问题,请参考以下文章

[转]JavaScript快速检测浏览器对CSS3特性的支持

确认一下Testin云测的真机服务有啥优势?

CSS 特性如何决定应用哪些样式?

css3新增特性

在运行时确定浏览器是不是太慢而无法优雅地处理复杂的 JavaScript/CSS 的最佳方法是啥?

认识CSS3特性之过渡