IE VS NETSCAPE[17]

[入库:2005年8月19日] [更新:2007年3月24日]

本文简介:选择自 edwardfay 的 blog

26

给下来框新增一个option

var newopt =new option(text,value,false,false); select.options[select.options.length] = newopt;

var ooption = document.createelement("option"); ooption.text="" ; ooption.value=""; select.add(ooption);

27

删除下拉框的某个option

 select.options[i] = null;

select.options[i] = null;

select.options.remove(i);

本文关键:IE VS NETSCAPE
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top