select 移除某一 option 的 javascript 公司用的代码是
var ddlPrimaryResource = document.getElementById(ddlPrimaryResourceID);ddlPrimaryResource.options[ddlPrimaryResource.selectedIndex].remove();
这段代码在 chrome 里执行OK ,但是在 safari 里却报错了
TypeError: 'undefined' is not a function (evaluating 'ddlPrimaryResource.options[ddlPrimaryResource.selectedIndex].remove()')
google 了一下改成
var ddlPrimaryResource = document.getElementById(ddlPrimaryResourceID);ddlPrimaryResource.removeChild(ddlPrimaryResource.options[ddlPrimaryResource.selectedIndex]);
引用:
google 访问不了的可以用这个地址: