网上查说原因有以下几种可能:
1:js代码用了javascript关键字2:方法名和表单或者div form名冲突
3.button中有name="submit"
4.上传图片时提示:Object doesn't support this property or method
原因:服务器上安装的AspJpeg的版本低于1.4版。
解决方法:安装1.4或以上版本的AspJpeg组件。
当我发现的问题是,在dwr的回调函数中,如果一个变量未定义就先使用,如下:
ServerAction.doStop(checkedArrays,function(data){
if(data == true) {
msg = "helloworld";
}
document.getElementById('conn').innerHTML = msg;
})
则会报Object doesn't support this property or method错误。解决方法:在用msg之前,先定义它:
ServerAction.doStop(checkedArrays,function(data){
var msg; //先定义,之后才能使用
if(data == true) {
msg = "helloworld";
}
document.getElementById('conn').innerHTML = msg;
})