加入收藏-方便您以后查找网页特效哦
你的位置:
主页
>>
选择框特效
可以编辑的下拉框-Enter后输入文字|Del后删除选项
直接可以修改
加入如下代码到body区域
<script> function catchMD(obj){ switch(event.keyCode){ case 13: obj.options[obj.length] = new Option("","",false,true); event.returnValue = false; break; case 46: if (confirm("是否删除?")){ obj.options[obj.selectedIndex] = null; if(obj.options.length > 0){ obj.options[0].selected = true; } event.returnValue = false; break; } case 8: obj.options[obj.selectedIndex].text = obj.options[obj.selectedIndex].text.substr(0,obj.options[obj.selectedIndex].text.length-1); event.returnValue = false; break; } } function catchMP(obj){ obj.options[obj.selectedIndex].text = obj.options[obj.selectedIndex].text + String.fromCharCode(event.keyCode); event.returnValue = false; } function window.onload() { obj = document.getElementsByTagName("SELECT"); obj[0].focus(); } </script> <select onkeydown="catchMD(this)" onkeypress="catchMP(this)"> <option>直接可以修改</option> </select>
COPYRIGHT © 2003-2005 ALL RIGHTS RESERVED
业务联系
|
广告服务
|
网站建设
|
关于我们
|
免责声明
月光宝盒工作室
800*600