0
プログラムで選択した要素を無効にしようとしていますが、Firefoxでは機能しませんが、Chromeでは動作します。ここでFirefoxでPrototypeJSが機能しない選択された要素を無効にする
$$('select[multiple].chosen').each(function(element) { new Chosen(element); });
var MY_SELECT = $$('select[multiple].chosen')[0];
$('disable-button').on('click', 'button', function(event, element) {
$('fruitsid').disabled=true;
$('fruitsid').fire("chosen:updated");
});
はJSFiddleです:http://jsfiddle.net/y79rm2dk/2/
.fireは、Firefoxで無効要素で動作しないようですか? http://jsfiddle.net/y79rm2dk/6/:
同じ結果の
を使用してみてください。 Firefoxで試してみてください –