我一直在使用與ui.multiselect.js
類似的HTML選擇:selectedOptions.length在Internet Explorer中不起作用,但在Chrome和Firefox中正常工作?
我想要所選元素的長度。因此,我不得不用下面的代碼:
var selectedOption = document.getElementById('animalList').selectedOptions.length;
但似乎selectedOptions.length
沒有在IE工作,但在Chrome和Firefox
以下是我已經嘗試了備選方案:
var select = document.getElementById('animalList');
var len = select.options.length;
我得到的結果爲0.
$("#animalList :selected").length;
我得到結果a小號0
原來是ID 「mySelect」 或 「animalList」 得長? – Utkanos
顯示您的HTML。 – Liam
你可以用'[<>]'來爲你的問題插入一個可運行的代碼塊嗎? –