Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/84.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 日期选择器不';我不在ie7工作_Jquery_Datepicker - Fatal编程技术网

Jquery 日期选择器不';我不在ie7工作

Jquery 日期选择器不';我不在ie7工作,jquery,datepicker,Jquery,Datepicker,我已经实现了一个ui日期选择器,它可以在FF中完美地工作,但在IE中却不能 请参见此处,尝试单击“Geboortedatam”字段。 出什么问题了?Ladosa.js中的第76-78行: password:{ required: true, }, 应该是 password:{ required: true }, 至少这是我的IE给出错误的原因。 希望这能帮助你朝着正确的方向前进 编辑(第78行,也在Ladosa.js中) 规则:{//开始规则标记 ... 密码:{ 必填项:true

我已经实现了一个ui日期选择器,它可以在FF中完美地工作,但在IE中却不能

请参见此处,尝试单击“Geboortedatam”字段。
出什么问题了?

Ladosa.js中的第76-78行:

password:{
  required: true,
},
应该是

password:{
  required: true
},
至少这是我的IE给出错误的原因。
希望这能帮助你朝着正确的方向前进

编辑(第78行,也在Ladosa.js中)

规则:{//开始规则标记
...
密码:{
必填项:true

},Ladosa.js中的第76-78行:

password:{
  required: true,
},
应该是

password:{
  required: true
},
至少这是我的IE给出错误的原因。
希望这能帮助你朝着正确的方向前进

编辑(第78行,也在Ladosa.js中)

规则:{//开始规则标记
...
密码:{
必填项:true
},//这是您的问题:

    //set the rules for the field names
            rules: {
                firstname: {
                    required: true,
                    minlength: 2
                },
                surname: {
                    required: true,
                    minlength: 2
                },              
                email:{
                    required: true,
                    email: true
                },
                password:{
                    required: true
                }, <----- remove this comma !!!

            }, 
//设置字段名的规则
规则:{
名字:{
要求:正确,
最小长度:2
},
姓:{
要求:正确,
最小长度:2
},              
电邮:{
要求:正确,
电子邮件:真的
},
密码:{
必填项:true
},这是您的问题:

    //set the rules for the field names
            rules: {
                firstname: {
                    required: true,
                    minlength: 2
                },
                surname: {
                    required: true,
                    minlength: 2
                },              
                email:{
                    required: true,
                    email: true
                },
                password:{
                    required: true
                }, <----- remove this comma !!!

            }, 
//设置字段名的规则
规则:{
名字:{
要求:正确,
最小长度:2
},
姓:{
要求:正确,
最小长度:2
},              
电邮:{
要求:正确,
电子邮件:真的
},
密码:{
必填项:true

},你怎么能看到第79行,我的视图源代码只显示到第69行出于某种原因我编辑了答案:它是Ladosa.js中的第76-78行。不……我的问题是查看源代码,当我在记事本中打开它时,最远的一行是69行,我不明白你为什么能看到第79行,我的视图源代码只显示到第69行出于某种原因,我编辑了答案:在Ladosa.js中是第76-78行。不……我的问题是为了查看源代码,当我在记事本中打开它时,最远的一行是69,我不明白为什么+1发现了好的逗号,好的!+1发现了好的逗号,好的!