首页 > 代码库 > select remove option safari 兼容
select remove option safari 兼容
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]);
引用:http://www.dyn-web.com/tutorials/forms/select/option/
google 访问不了的可以用这个地址:https://s3-us-west-1.amazonaws.com/google3/index.html
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。