我有這樣的代碼:獲得價值的JavaScript
<script>
function getgroup(){
var i=0;
var total=document.getElementById("selectedOptions").length;
while (i<total)
{
var group=document.getElementById("selectedOptions").value;
var group2=group.substring(2);
alert(group2);
i++;
}
}
</Script>
我要將列表內循環並獲得列表中的每個項目的值。 通過使用此代碼,我只獲取第一個項目的值。
請幫忙嗎?
應該只存在一個具有唯一ID的對象。很明顯,只有一個項目。 – Neil 2012-04-10 13:16:49