<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0064)http://www.cnblogs.com/345563452/archive/2008/09/17/1292749.html -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><HTML><HEAD><META
content="IE=9.0000" http-equiv="X-UA-Compatible">
<META content="text/html; charset=utf-8" http-equiv="Content-Type">
<TITLE>网页常用的JSP脚本 - 自己 - 博客园</TITLE><LINK rel="stylesheet" type="text/css" href="网页常用的JSP脚本%20-%20自己%20-%20博客园_files/common.css">
<LINK id="MainCss" rel="stylesheet" type="text/css" href="网页常用的JSP脚本%20-%20自己%20-%20博客园_files/style.css">
<LINK rel="stylesheet" type="text/css" href="网页常用的JSP脚本%20-%20自己%20-%20博客园_files/common2.css">
<LINK rel="stylesheet" type="text/css" href="网页常用的JSP脚本%20-%20自己%20-%20博客园_files/shStyle.css">
<LINK title="RSS" rel="alternate" type="application/rss+xml" href="http://www.cnblogs.com/345563452/rss">
<LINK title="RSD" rel="EditURI" type="application/rsd+xml" href="http://www.cnblogs.com/345563452/rsd.xml">
<LINK rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.cnblogs.com/345563452/wlwmanifest.xml">
<SCRIPT type="text/javascript" src="网页常用的JSP脚本%20-%20自己%20-%20博客园_files/jquery.js"></SCRIPT>
<SCRIPT type="text/javascript">
var currentBlogApp = '345563452';
</SCRIPT>
<SCRIPT type="text/javascript" src="网页常用的JSP脚本%20-%20自己%20-%20博客园_files/common.js"></SCRIPT>
<SCRIPT type="text/javascript" src="网页常用的JSP脚本%20-%20自己%20-%20博客园_files/json2.js"></SCRIPT>
<SCRIPT type="text/javascript" src="网页常用的JSP脚本%20-%20自己%20-%20博客园_files/syntaxHighlighter.js"></SCRIPT>
<META name="GENERATOR" content="MSHTML 9.00.8112.16455"></HEAD>
<BODY><A name="top"></A><!--done-->
<DIV id="centerbody" align="center">
<DIV id="header"><!--done-->
<DIV class="header">
<DIV class="headerText"><A id="Header1_HeaderTitle" class="headermaintitle"
href="http://www.cnblogs.com/345563452/">沉积如水</A><BR> 学习.NET </DIV></DIV></DIV>
<DIV id="main">
<DIV id="mytopmenu">
<DIV id="mylinks"><!--done--><A id="MyLinks1_HomeLink" class="menu" href="http://www.cnblogs.com/">博客园</A>
<A id="MyLinks1_MyHomeLink" class="menu" href="http://www.cnblogs.com/345563452/">首页</A>
<A id="MyLinks1_NewPostLink" class="menu" href="http://www.cnblogs.com/345563452/admin/EditPosts.aspx?opt=1"
rel="nofollow">新随笔</A> <A accessKey="9" id="MyLinks1_ContactLink"
class="menu" href="http://space.cnblogs.com/msg/send/%e8%87%aa%e5%b7%b1" rel="nofollow">联系</A>
<A id="MyLinks1_Syndication" class="menu" href="http://www.cnblogs.com/345563452/rss">订阅</A><A
id="MyLinks1_XMLLink" href="http://www.cnblogs.com/345563452/rss"><IMG alt="订阅"
src="网页常用的JSP脚本%20-%20自己%20-%20博客园_files/xml.gif"></A> <A id="MyLinks1_Admin"
class="menu" href="http://www.cnblogs.com/345563452/admin/EditPosts.aspx" rel="nofollow">管理</A>
</DIV>
<DIV id="mystats"><!--done-->
<DIV class="blogStats">posts - 118, comments - 31, trackbacks - 0
</DIV></DIV></DIV>
<DIV id="centercontent"><!--done-->
<DIV class="post">
<DIV class="postTitle"><A id="cb_post_title_url" class="postTitle2" href="http://www.cnblogs.com/345563452/archive/2008/09/17/1292749.html">网页常用的JSP脚本</A></DIV>
<DIV id="cnblogs_post_body">
<P style="text-indent: 2em;">1.文本框焦点问题</P>
<P style="text-indent: 2em;">onBlur:当失去输入焦点后产生该事件</P>
<P style="text-indent: 2em;">onFocus:当输入获得焦点后,产生该文件</P>
<P style="text-indent: 2em;">Onchange:当文字值改变时,产生该事件</P>
<P style="text-indent: 2em;">Onselect:当文字加亮后,产生该文件</P>
<P style="text-indent: 2em;"><input type="text" value="郭强"
onfocus="if(value=='郭强') {value=''}" onblur="if </P>
<P style="text-indent: 2em;">(value=='') {value='郭强'}">点击时文字消失,失去焦点时文字再出现
</P>
<P style="text-indent: 2em;">2.网页按钮的特殊颜色</P>
<P style="text-indent: 2em;"><input type=button name="Submit1" value="郭强"
size=10 class=s02 </P>
<P style="text-indent: 2em;">style="background-color:rgb(235,207,22)"> </P>
<P style="text-indent: 2em;">3.鼠标移入移出时颜色变化</P>
<P style="text-indent: 2em;"><input type="submit" value="找吧" name="B1"
onMouseOut=this.style.color="blue" </P>
<P style="text-indent: 2em;">onMouseOver=this.style.color="red"
class="button"> </P>
<P style="text-indent: 2em;">4.平面按钮</P>
<P style="text-indent: 2em;"><input type=submit value=订阅 style="border:1px
solid :#666666; height:17px; width:25pt; font-size:9pt; </P>
<P style="text-indent: 2em;">BACKGROUND-COLOR: #E8E8FF; color:#666666"
name="submit"> </P>
<P style="text-indent: 2em;">5.按钮颜色变化</P>
<P style="text-indent: 2em;"><input type=text name="nick"
style="border:1px solid #666666; font-size:9pt; height:17px; </P>
<P style="text-indent: 2em;">BACKGROUND-COLOR: #F4F4FF; color:#ff6600" size="15"
maxlength="16"> </P>
<P style="text-indent: 2em;">6.平面输入框</P>
<P style="text-indent: 2em;"><input type="text" name="T1" size="20"
style="border-style: solid; border-width: 1"> </P>
<P style="text-indent: 2em;">7.使窗口变成指定的大小</P>
<P style="text-indent: 2em;"><script></P>
<P style="text-indent: 2em;">window.resizeTo(300,283);</P>
<P style="text-indent: 2em;"></script> </P>
<P style="text-indent: 2em;">8.使文字上下滚动</P>
<P style="text-indent: 2em;"><marquee direction=up scrollamount=1
scrolldelay=100 onmouseover='this.stop()' onmouseout='this.start()' </P>
<P style="text-indent: 2em;">height=60></P>
<P style="text-indent: 2em;"><!-- head_scrolltext --></P>
<P style="text-indent: 2em;"><tr></P>
<P style="text-indent: 2em;"><td></P>
<P style="text-indent: 2em;">共和国</P>
<P
style="text-indent: 2em;"></table>
<!-- end head_scrolltext --></P>
<P style="text-indent: 2em;"></marquee> </P>
<P style="text-indent: 2em;">9.状态栏显示该页状态</P>
<P style="text-indent: 2em;"><base onmouseover="window.status='网站建设
http://www.admin5.cn/' ;return true"> </P>
<P style="text-indent: 2em;">10.可以点击文字实现radio选项的选定</P>
<P style="text-indent: 2em;"><br></P>
<P style="text-indent: 2em;">&nbsp;&nbsp;&nbsp;&nbsp;<input
type="radio" name="regtype" value="A03" id="A03"></P>
<P style="text-indent: 2em;"><label for="A03"> 情侣 : 一次注册两个帐户</label>
<br> </P>
<P style="text-indent: 2em;">11.可以在文字域的font写onclick事件 </P>
<P style="text-indent: 2em;">12.打印</a>打印网页</P>
<P style="text-indent: 2em;"><a href='javascript:window.print ()'> </P>
<P style="text-indent: 2em;">13.线型输入框</P>
<P style="text-indent: 2em;"><input type="text" name="key" size="12"
value="关键字" onFocus=this.select() onMouseOver=this.focus() </P>
<P style="text-indent: 2em;">class="line"> </P>
<P style="text-indent: 2em;">14.显示文档最后修改日期</P>
<P style="text-indent: 2em;"><script language=javascript></P>
<P style="text-indent: 2em;">function hi(str)</P>
<P style="text-indent: 2em;">{</P>
<P style="text-indent: 2em;"> document.write(document.lastModified) </P>
<P style="text-indent: 2em;"> alert("hi"+str+"!")</P>
<P style="text-indent: 2em;">}</P>
<P style="text-indent: 2em;"></script> </P>
<P style="text-indent: 2em;">15.可以在鼠标移到文字上时就触发�
评论0