好吧,我在我的代码中运行以下函数,并想知道为什么在 Firebug 中出现如下错误:
function TestSurvey(UniqueID, PhontTypes) {
if(typeof(PhontTypes) != "undefined")
PhontTypes = "4";
if (PhontTypes.match("5"))
{
window.location = some url location here...
}
else
{
window.location = some url location here...
}
}
我在萤火虫中遇到的错误如下:
TypeError: PhontTypes is undefined
if (PhontTypes.match("5"))