新闻详情

按钮嵌入的效果

3092 2009/5/18
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>标题页</title>
<style type="text/css">
.over {color:yellow; background: navy}
.down {color:yellow; background: navy; font-style: italic}
</style>
</head>
<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">
</body>
</html>

相关资讯

18973218026
返回顶部