2008-02-23 08:05:29来源:互联网 阅读 ()
1、以事件驱动JavaScript 函数
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>无标题文档</title> <script> <!-- function hello() { aa=100 cc='欢迎第' aa '次光临!' alert(cc) } //--> </script> </head> <body > <a href="http://www.webjx.com" onmouseover="hello()"> 网页教学网</a> </body> </html> 运行代码复制代码另存代码收藏本页
2、文本域显示内容,但不可修改
<input value="网页教学网" readonly> 运行代码复制代码另存代码收藏本页
3、让select控件可以自定义边框
<style> .box2{border:1px solid #00ff00;width:180px;height:17px;clip:rect(0px,179px,16px,0px);overflow:hidden;} select{position:relative;left:-2px;top:-2px;font-size:12px;width:183px;line-height:14px;border:0px;color:#909993;} </style> <div class=box2><select id=idselect1 onchange="select1();" hidefocus> <option selected>网页教学网</option> <option>设计在线</option> <option>办公软件</option> <option>工具软件<option> </select></div> 运行代码复制代码另存代码收藏本页
4、实现弹出菜单