我有一个快速功能:
//loop through all the options and hide "dts"
$('#userSpec > option').each(function() {
console.log(this);
if(this.value.indexOf("d")==0) {
$(this).css("display", "none");
}
});
它在适用于 Ubuntu、Firefox 的 Chrome 的最新版本中运行良好,但在 Opera 中运行良好。在 Mac 上,Firefox 是唯一有效的。我还尝试使用“display”、“none”、“!important”,将 .css 更改为 .style 或 .attr - 结果相同。我添加了一个带有这些 css 参数的类并使用了 .addClass,没有变化。任何想法为什么会发生这种情况以及我该如何解决?
非常感谢。