文件名称:使用js对select动态添加和删除OPTION示例代码
文件大小:45KB
文件格式:PDF
更新时间:2023-12-24 06:24:22
c ec js
<select id=”ddlResourceType” onchange=”getvalue(this)”> </select> 动态删除select中的所有options: document.getElementById(“ddlResourceType”).options.length=0; 动态删除select中的某一项option: document.getElementById(“ddlResourceType”).options.remove(indx); 动态添加select中的项option: document.getElementById(“ddlResourceType”