PHP基础
PHP教程
php框架
JavaScript
asp.net
AJAX
正则表达式
ASP
输入
banner图
图片脚本
导航/分类
清空select标签中option选项的3种不同方式_HTML/Xhtml_网页制作
方法一
代码如下:
document.getElementById("selectid").options.length = 0;
方法二
代码如下:
document.formName.selectName.options.length = 0;
方法三
代码如下:
document.getElementById("selectid").innerHTML = "";