獲取顯示的漢字javascript
document.getElementById("bigclass").options[window.document.getElementById("bigclass").selectedIndex].textcss
獲取數據庫中的idjava
window.document.getElementById("bigclass").valueajax
獲取select組分配的索引id算法
window.document.getElementById("bigclass").selectedIndex數據庫
例子:app
<select name="bigclass" id="bigclass" onChange="javascript:updatePage2();">
<option value="" selected="selected">ajax實驗</option>
<option value="4">我適宜市哈</option>
</select>佈局
使用
document.getElementById("bigclass").options[window.document.getElementById("bigclass").selectedIndex].text
的結果是:我適宜市哈spa
使用
window.document.getElementById("bigclass").value
的結果是:4設計
使用
window.document.getElementById("bigclass").selectedIndex
的結果是:1
一、向Select裏添加Option
function fnAddItem(text,value)
{
var selTarget = document.getElementById("selID");
selTarget.Add(new Option("text","value"));
}
二、刪除Select裏的Option
function fnRemoveItem()
{
var selTarget = document.getElementById("selID");
if(selTarget.selectedIndex > -1)
{//說明選中
for(var i=0;i<selTarget.options.length;i++)
{
if(selTarget.options[i].selected)
{
selTarget.remove(i);
i = i - 1;//注意這一行
}
}
}
}
三、移動Select裏的Option到另外一個Select中
function fnMove(fromSelectID,toSelectID)
{
var from = document.getElementById(fromSelectID);
var to = document.getElementById(toSelectID);
for(var i=0;i<from.options.length;i++)
{
if(from.options[i].selected)
{
to.appendChild(from.options[i]);
i = i - 1;
}
}
}
if 裏的代碼也可用下面幾句代碼代替
var op = from.options[i];
to.options.add(new Option(op.text, op.value));
from.remove(i);
四、Select裏Option的上下移動
function fnUp()
{
var sel = document.getElementById("selID");
for(var i=1; i < sel.length; i++)
{//最上面的一個不須要移動,因此直接從i=1開始
if(sel.options[i].selected)
{
if(!sel.options.item(i-1).selected)
{//上面的一項沒選中,上下交換
var selText = sel.options[i].text;
var selValue = sel.options[i].value;
sel.options[i].text = sel.options[i-1].text;
sel.options[i].value = sel.options[i-1].value;
sel.options[i].selected = false;
sel.options[i-1].text = selText;
sel.options[i-1].value = selValue;
sel.options[i-1].selected=true;
}
}
}
}
在進行上下兩項互換時,也可使用如下代碼,可是效率很低,由於每一次的Dom操做都將致使整個頁面的從新佈局,因此不如直接修改元素的屬性值。
var oOption = sel.options[i]
var oPrevOption = sel.options[i-1]
sel.insertBefore(oOption,oPrevOption);
向下移動同理
function fnDown()
{
var sel = fnGetTarget("selLeftOrRight");
for(var i=sel.length -2; i >= 0; i--)
{//向下移動,最後一個不須要處理,因此直接從倒數第二個開始
if(sel.options.item(i).selected)
{
if(!sel.options.item(i+1).selected)
{//下面的Option沒選中,上下互換
var selText = sel.options.item(i).text;
var selValue = sel.options.item(i).value;
sel.options.item(i).text = sel.options.item(i+1).text;
sel.options.item(i).value = sel.options.item(i+1).value;
sel.options.item(i).selected = false;
sel.options.item(i+1).text = selText;
sel.options.item(i+1).value = selValue;
sel.options.item(i+1).selected=true;
}
}
}
}
五、Select裏Option的排序
這裏藉助Array對象的sort方法進行操做,sort方法接受一個function參數,能夠在這個function裏定義排序時使用的算法邏輯。
array.sort([compareFunction]) 裏compareFunction接受兩個參數(p1,p2),sort操做進行時,array對象會每次傳兩個值進去,進行比較;compareFunciton必須返回一個整數值:當返回值>0時,p1會排在p2後面;返回值<0時,p1會排在p2前面;返回值=0時,不進行操做。
例如:
function fnCompare(a,b)
{
if (a < b)
return -1;
if (a > b)
return 1;
return 0;
}
var arr = new Array();
//add some value into arr
arr.sort(fnCompare);
//這裏sort的操做結果就是arr裏的項按由小到大的升序排序
//若是把fnCompare裏改成
//if (a < b)
// return 1;
//if (a > b)
// return -1;
//return 0;
//則sort的結果是降序排列
好,下面就是對Select裏Option的排序
//由於排序能夠按Option的Value排序,也能夠按Text排序,這裏只演示按Value排序
function sortItem()
{
var sel = document.getElementById("selID");
var selLength = sel.options.length;
var arr = new Array();
var arrLength;
//將全部Option放入array
for(var i=0;i<selLength;i++)
{
arr[i] = sel.options[i];
}
arrLength = arr.length;
arr.sort(fnSortByValue);//排序
//先將原先的Option刪除
while(selLength--)
{
sel.options[selLength] = null;
}
//將通過排序的Option放回Select中
for(i=0;i<arrLength;i++)
{
sel.add(new Option(arr[i].text,arr[i].value));
}
}
function fnSortByValue(a,b)
{
var aComp = a.value.toString();
var bComp = b.value.toString();
if (aComp < bComp)
return -1;
if (aComp > bComp)
return 1;
return 0;
}
排序時還能夠有更多選項,好比將value值看作Integer或是String進行排序,獲得的結果是不同的。篇幅限制,不在多作介紹。
我將這些全部的操做都寫在了一個文件裏,運行的效果如圖(點擊看大圖)
有興趣的朋友能夠下載來看看,裏面還設計div+css排版等。