伺服器弱智,請自行將程式碼中包含全角select的部分替換為半角字元。
程式碼
<script type="text/javascript">
var childCreate=false;
function Offset(e)
//取標籤的絕對位置
{
var t = e.offsetTop;
var l = e.offsetLeft;
var w = e.offsetWidth;
var h = e.offsetHeight-2;
while(e=e.offsetParent)
{
t+=e.offsetTop;
l+=e.offsetLeft;
}
return {
top : t,
left : l,
width : w,
height : h
}
}
function loadselect(obj){
//第一步:取得select所在的位置
var offset=Offset(obj);
//第二步:將真的select隱藏
obj.style.display="none";
//第三步:虛擬一div出來代替select
var iDiv = document.createElement("div");
iDiv.id="selectof" + obj.name;
iDiv.style.position = "absolute";
iDiv.style.width=offset.width + "px";
iDiv.style.height=offset.height + "px";
iDiv.style.top=offset.top + "px";
iDiv.style.left=offset.left + "px";
iDiv.style.background="url( iDiv.style.border="1px solid #ccc";
iDiv.style.fontSize="12px";
iDiv.style.lineHeight=offset.height + "px";
iDiv.style.textIndent="4px";
document.body.appendChild(iDiv);
//第四步:將select中預設的選項顯示出來
var tValue=obj.options[obj.selectedIndex].innerHTML;
iDiv.innerHTML=tValue;
//第五步:模擬滑鼠點擊
iDiv.onmouseover=function(){//滑鼠移到
iDiv.style.background="url( }
iDiv.onmouseout=function(){//滑鼠移走
iDiv.style.background="url( }
iDiv.onclick=function(){//滑鼠點擊
if (document.getElementById("selectchild" + obj.name)){
//判斷是否有建立過div
if (childCreate){
//判斷目前的下拉是不是開啟狀態,如果是開啟的就關閉掉。是關閉的就開啟。
document.getElementById("selectchild" + obj.name).style.display="none";
childCreate=false;
}else{
document.getElementById("selectchild" + obj.name).style.display="";
childCreate=true;
}
}else{
//初始一個div放在上一個div下邊,當options的替身。
var cDiv = document.createElement("div");
cDiv.id="selectchild" + obj.name;
cDiv.style.position = "absolute";
cDiv.style.width=offset.width + "px";
cDiv.style.height=obj.options.length *20 + "px";
cDiv.style.top=(offset.top+offset.height+2) + "px";
cDiv.style.left=offset.left + "px";
cDiv.style.background="#f7f7f7";
cDiv.style.border="1px solid silver";
var uUl = document.createElement("ul");
uUl.id="uUlchild" + obj.name;
uUl.style.listStyle="none";
uUl.style.margin="0";
uUl.style.padding="0";
uUl.style.fontSize="12px";
cDiv.appendChild(uUl);
document.body.appendChild(cDiv);
childCreate=true;
for (var i=0;i<obj.options.length;i++){
//將原始的select標籤中的options加入li中
var lLi=document.createElement("li");
lLi.id=obj.options[i].value;
lLi.style.textIndent="4px";
lLi.style.height="20px";
lLi.style.lineHeight="20px";
lLi.innerHTML=obj.options[i].innerHTML;
uUl.appendChild(lLi);
}
var liObj=document.getElementById("uUlchild" + obj.name).getElementsByTagName("li");
for (var j=0;j<obj.options.length;j++){
//為li標籤新增滑鼠事件
liObj[j].onmouseover=function(){
this.style.background="gray";
this.style.color="white";
}
liObj[j].onmouseout=function(){
this.style.background="white";
this.style.color="black";
}
liObj[j].onclick=function(){
//做兩件事情,一是將使用者選擇的儲存到原始select標籤中,要不做的再好看表單遞交後也取得不到select的值了。
obj.options.length=0;
obj.options[0]=new Option(this.innerHTML,this.id);
//同時我們把下拉的關掉。
document.getElementById("selectchild" + obj.name).style.display="none";
childCreate=false;
iDiv.innerHTML=this.innerHTML;
}
}
}
}
}
</script>
<style type="text/css">
select{width:200px;height:20px;}
</style>
</head>
<body>
<h1>用javascript模擬select達到美化效果</h1>
<form name="f">
<select id="province" name="province">
<option value="10">江西</option>
<option value="11">福建</option>
<option value="12">廣東</option>
<option value="13">浙江</option>
<option value="13">浙江</option>
<option value="13">北京</option>
<option value="13">上海</option>
<option value="13">浙江</option>
<option value="13">浙江</option>
<option value="13">浙江</option>
<option value="13">浙江</option>
<option value="13">浙江</option>
</select>
</form>
<script type="text/javascript">
loadselect(document.f.province);
</script>