|

第一步:把如下代码加入<head>区域中
<style type="text/css">
<!--
.over {color:yellow; background: navy}
.down {color:yellow; background: navy; font-style: italic}
-->
</style>
第二步:在<body>区中加入如下代码
<input
type="Button"
onMouseOver="this.className='over';"
onMouseOut="this.className='';"
onMouseDown="this.className='down';"
onMouseUp="this.className='over';"
value="按一下试试"
onClick="this.value='我爱死你了!'" name="Button">
|