js/jsp工作记录
Posted 青衣跪下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js/jsp工作记录相关的知识,希望对你有一定的参考价值。
清空select中option的几种方法
方法一
document.getElementById("selectid").options.length = 0;
方法二
document.formName.selectName.options.length = 0;
方法三
document.getElementById("selectid").innerhtml = "";
以上是关于js/jsp工作记录的主要内容,如果未能解决你的问题,请参考以下文章