做ease库判断opacity有了疑问查询结果:
较为简洁的办法是
if('opacity' in document.body.style)
{
// do stuff
}
扩展所有属性检测
function isPropertySupported(property)
{
return property in document.body.style;
}
参考链接
Check whether a CSS property is supported
相类似的方法是直接在实例上检测,不过实用性上没有上述方法好用
How do you properly detect the browser's support for opacity?