原型扩展jquery无法在Internet Explorer中工作 - “不支持”

时间:2014-12-29 12:14:07

标签: javascript jquery internet-explorer prototype

我使用一些原型扩展了jQuery来验证表单。

if($('#mydiv').valid()) { /*do submit stuff*/}

它在Firefox中完美运行,但IE11给了我: “对象不支持属性或方法” 在意大利语中“L'oggetto non supportalaproprietàoil metodo'valid'”

感谢新年快乐

1 个答案:

答案 0 :(得分:1)

解决! IE调试报告错误,但问题是由于具有类似php的参数初始化的函数:

function aaa(a="some thing"){
//stuff
}

我换成了:

function aaa(a){
if(!a) a="some thing";
//stuff
}

谢谢