日期:2014-05-16 浏览次数:20372 次
<select name="ChangeStatus" style="float:right; margin-right:3px" onchange = "winopen(this)"> 
         <option value="pcb_iptrans.html"> 111 </option> 
         <option value="tbs_pcb_pcbinfo_idtrans.html"> 222 </option> 
       </select> 
<script>
function winopen(o){
switch(o.selectedIndex){
case 0:width=600,height=400;break;
case 1:width=400,height=200;break;
case 2:width=400,height=200;break;
}
window.open(o.value,o.selectedIndex,"height="+height+",width="+width+"status=yes,toolbar=yes,menubar=yes,location=yes");
}
</script>