私は簡単な機能を持っています:
//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を使用しましたが、変更はありません。なぜこれが起こっているのか、どうすれば修正できるのでしょうか?
どうもありがとう。