首頁  >  文章  >  web前端  >  select多選 multiple的使用範例_javascript技巧

select多選 multiple的使用範例_javascript技巧

WBOY
WBOY原創
2016-05-16 16:44:231274瀏覽
複製程式碼程式碼如下:




function showDiv(id){

document.getElementById("selectOption").style.display="block";
document.getElementById("selectOption").style.position="absolute";
document.getElementById("selectOption").style.top=document.getElementById(id).offsetTop 25;
document.getElementById("selectOption").style.left=document.getElementById(id).offsetLeft 20;
}
function selectM()
{
var obj = document.getElementById("mySelect");
alert(obj.selectedIndex);

}
function checkselect(objname){
o = document.getElementById(objname);
t = document.getElementById("output");
var intvalue="";
for(i=0;iif(o.options[i].selected){
intvalue =o.options[i].value ",";
}
}
t.value=intvalue.substr(0,intvalue.length-1);
警報(intvalue);

}

腳本>
頭>




選取的項目:




在您點擊「多個」按鈕之前,請同時嘗試一些選項。 ;/表格>
身體>


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn