欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js select 控制實(shí)現(xiàn)代碼

 更新時(shí)間:2009年04月15日 00:52:50   作者:  
用js控制select的一些比較不錯(cuò)的功能。
實(shí)現(xiàn)代碼:
復(fù)制代碼 代碼如下:

<select id=test11 size=5 style="width:50px"></select>
<select id="test" style="width:50px"></select>
<button onclick='test[test.length]=new Option("1","12");'>同時(shí)添加text和value</button>
<button onclick='test.insertBefore(document.createElement("option")).innerText="2";'>對(duì)text操作</button> <button onclick='test.appendChild(document.createElement("option")).setAttribute("value","3");'>對(duì)value操作</button>
<button onclick="alert(test.outerHTML)">view</button>
<button onclick="test.removeChild(test.children[0])">del1</button>
<button onclick="test.firstChild.removeNode()">del2</button>
<button onclick="test[0]=null">del3</button>

效果演示:

[Ctrl+A 全選 注:引入外部Js需再刷新一下頁(yè)面才能執(zhí)行]

相關(guān)文章

最新評(píng)論