大家好,我正在尝试使用 Jquery 支持属性来检测 Firefox 浏览器,但我不知道如何才能做到这一点:(
例如,我知道如何检测浏览器是否支持不透明度(jQuery.support.opacity
),但我想使用类似的东西来检测仅 Firefox不使用$.browser
属性。
谢谢!!
问问题
1756 次
2 回答
1
This seems to be related to your question: How do I use JQuery.support to check if the browser is Firefox?
You don't use support as a means to check what browser the user is using, but rather if the browser supports the DOM manipulation that you're trying to do.
于 2012-11-01T15:33:16.390 回答
0
可以在没有 jquery 的情况下这样做。您可以使用 if 语句进行检查,如下所示。
var ss = document.createElement('style');
if(ss.styleSheet)// checking if ss.styleSheet is supported.
{
ss.styleSheet.cssText = content;
}
如果要检查是否支持某个属性,可以通过 if 语句来完成。
于 2012-11-01T15:35:39.513 回答