当前位置: 代码迷 >> JavaScript >> Firefox中出现异常 missing ( before formal parameters
  详细解决方案

Firefox中出现异常 missing ( before formal parameters

热度:731   发布时间:2012-03-08 13:30:13.0
Firefox中出现错误 missing ( before formal parameters
function String.prototype.Trim()  
{  
  return this.replace(/^\\s*/g,"").replace(/\s*\$/g,"");  
}
错误行显示在这个函数上,是不是这种写法Firefox不支持?

------解决方案--------------------
这样就好了。
JScript code
String.prototype.Trim = function() {  
    return this.replace(/^\s*|\s*$/g,"");
}

alert("[" + " 123 ".Trim() + "]") 
  相关解决方案