Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>按钮特殊效果</title>
<style type="text/css">
<!--
.over {color:yellow; background: navy}
.down {color:yellow; background: navy; font-style: italic}
-->
</style>
<body>
<center>
<input
type="Button"
onMouseOver="this.className='over';"
onMouseOut="this.className='';"
onMouseDown="this.className='down';"
onMouseUp="this.className='over';"
value="点击按钮"
onClick="this.value='欢迎进入手册网'" name="Button">
</center>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx