检测浏览器是否支持标签的某个属性
Posted 流舟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检测浏览器是否支持标签的某个属性相关的知识,希望对你有一定的参考价值。
例如 IE lt9 不支持 input标签的 placeholder 属性:
1 function placeholder() { 2 return ‘placeholder‘ in document.createElement(‘input‘); 3 }
扩展:其他元素是否支持 指定的属性:
function isPropertySupport(property,tagName) { return property in document.createElement(tagName); }
以上是关于检测浏览器是否支持标签的某个属性的主要内容,如果未能解决你的问题,请参考以下文章