我有一个例子,我需要检查Safari V 5.1是否支持FileReader
功能。我尝试过:
if (typeof FileReader !== "object") {
alert("NA");
}
然而现在即使在我知道的其他浏览器中,他们支持FileReader
,我也会显示警告!所以我想我一定是做错了。
答案 0 :(得分:4)
检查功能是否已定义:
您是否尝试过以下操作?
if(typeof(window.FileReader)!="undefined"){
//Your code if supported
}else{
//your code if not supported
}
答案 1 :(得分:1)