ajaxpro 在IE6中正常 在IE7中不显示
JS: function ShowCity()
{
document.all("Drop_City").options.length=0;
var City=document.all("Drop_Pro").value;
var ds=System_statistics_AddStock.LoadCity(City).value;
if(ds=="")
{
return;
}
else
{
if(City!='')
{
for(var i=0; i<ds.Tables[0].Rows.length; i++)
{
opt= new Option();
opt.text=ds.Tables[0].Rows[i].Areaname;
opt.value=ds.Tables[0].Rows[i].ID ;
document.all("Drop_City").add(opt);
}
ShowArea();
}
}
}
function ShowArea()
{
document.all("Drop_Area").options.length=0;
var City=document.all("Drop_City").value;
var ds=System_statistics_AddStock.LoadCity(City).value;
if(ds=="")
return;
for(var i=0; i<ds.Tables[0].Rows.length; i++)
{
opt= new Option();
opt.text=ds.Tables[0].Rows[i].Areaname;
opt.value=ds.Tables[0].Rows[i].ID ;
document.all("Drop_Area").add(opt);
}
}
HTML: <asp:DropDownList ID="Drop_Pro" runat="server" onchange="ShowCity()" Width="85px">
</asp:DropDownList>
<select id="Drop_City" onchange="ShowArea()" style="width: 79px">
<option selected="selected" value="-1">请选择</option>
</select>
<select id="Drop_Area" style="width: 81px">
<option selected="selected" value="-1">请选择</option>
</select>
以上代码在IE6中显示正常 在IE7中显示不出来了。。。 也没出错提示