就像使textbox的text为空document.getElementById(objid).value="";
DropDownList的选择变为第一个document.getElementById(objid).selectedIndex = 0;
我用的是RadioButtonList的选择应该怎么做才可以使它也能够选择第一个了
请大家多帮忙
-
痴情客 回复于:2008-07-12
-
document.getElementById(objid).options[0].selected = true;