急 求帮忙解答如何不利用treeview
如何使选中山西省就可以把下面所有的太原市,大同市等等都选中【北京市】
【天津市】
【山西省】
|-【太原市】
|-【大同市】
|-【阳泉市】
|-【长治市】
while(document.form1.Audit.selectedIndex!=-1)
{
var newoption=document.createElement("option");//括号中的option可以变成option[]么?
newoption.text=document.form1.Audit.options[document.form1.Audit.selectedIndex].text;
newoption.value=document.form1.Audit.options[document.form1.Audit.selectedIndex].value;
if(IsNotExits(newoption.value,newoption.text))
{
document.form1.selected_Audit.add(newoption);
document.form1.Audit.remove(document.form1.Audit.selectedIndex);
}
else
{
document.form1.Audit.options[document.form1.Audit.selectedIndex].selected=false;
}
}使用这种方法怎么使选中父节点,子节点也全部选中
[ 本帖最后由 汐汐 于 2012-4-10 14:11 编辑 ]