入门小站
首页
HTML / CSS
JavaScript
服务端
数据库
移动端
XML 入门教程
ASP.NET
Web Service
开发工具
网站建设
入门笔记
常用代码片段
HTML DOM 事件
点击运行
<!DOCTYPE html> <html><head> <meta charset="utf-8"> </head> <body> <div onmouseover="mOver(this)" onmouseout="mOut(this)" style="background-color:#D94A38;width:120px;height:20px;padding:40px;">Mouse Over Me</div> <script> function mOver(obj) { obj.innerHTML="Thank You" } function mOut(obj) { obj.innerHTML="Mouse Over Me" } </script> </body> </html>
入门小站 @2018