主题: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
}
偶实在不知道是什么原因啊
救命啊
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
}
偶实在不知道是什么原因啊
救命啊