就是将需要检测的方法/对象作为if语句的判断条件,具体做法如下
复制代码 代码如下:
if(document.getElementById)
{
alert(document.getElementById);//output: function getElementById(){ [native code] };
}
如上例,该方法判断所在浏览器是否支持getElementById()方法,注意,这里if语句中的检测对象没有括号“()”。
您可能感兴趣的文章:
就是将需要检测的方法/对象作为if语句的判断条件,具体做法如下
复制代码 代码如下:
if(document.getElementById)
{
alert(document.getElementById);//output: function getElementById(){ [native code] };
}
您可能感兴趣的文章:
内容版权声明:除非注明,否则皆为本站原创文章。