DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> 清空select標簽中option選項的3種不同方式
清空select標簽中option選項的3種不同方式
編輯:HTML和Xhtml     
方法一

復制代碼代碼如下:
document.getElementById("selectid").options.length = 0;

方法二

復制代碼代碼如下:
document.formName.selectName.options.length = 0;

方法三

復制代碼代碼如下:
document.getElementById("selectid").innerHTML = "";
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved