回 帖 发 新 帖 刷新版面

主题:Internet Exolorer脚本错误

刷新页面后就回出现
Internet Exolorer脚本错误
错误:语句未结束
所指行的代码为
<select name="DropDownList1" id="DropDownList1" onclick="cityResult2();">
怀疑是onclick="cityResult2();"有问题


cityResult2()具体 如下:
function cityResult2() 

var city=document.getElementById("DropDownList1");
AjaxMethod2.GetCityList2(city.value,get_city_Result_CallBack2);
}
            
function get_city_Result_CallBack2(response)
{
if (response.value != null)
{                    
document.all("DropDownList2").length=0;                
var ds = response.value;
if(ds != null && typeof(ds) == "object" && ds.Tables != null)
{        
document.all("DropDownList2").options.add(new Option("[选择协会]", "0"));    
for(var i=0; i<ds.Tables[0].Rows.length; i++)
{
var name=ds.Tables[0].Rows[i].xhmc;
var id=ds.Tables[0].Rows[i].xhmcid;
document.all("DropDownList2").options.add(new Option(name,id));
}
}
}                
return
}


偶实在不知道是什么原因啊

救命啊

回复列表 (共2个回复)

沙发

新情况,并非页面刷新的问题,,同样用了button控件刷新页面,,在 后台中加了Response.Write("<script language=vbscript>msgbox""请将必填信息填写完整!""</script>")就会出现这个错误。。。而没有这个语句的话就不会出错


有谁知道为什么吗?

板凳

字符串格式不符用javascript 专成单引号试试

Response.Write("<script language='javascript'>alert('请将必填信息填写完整!')</script>")

我来回复

您尚未登录,请登录后再回复。点此登录或注册