Posted in Javascript onDecember 26, 2014
实现类似超链接的效果,this代表本页面元素
<html> <head> <script type="text/javascript"> function mOver(obj){ obj.color="red"; } function mOut(obj){ obj.color="blue"; } </script> </head> <body> <font style="cursor:hand" onclick="window.location.href='http://www.baidu.com/'" onmouseover="mOver(this)" onmouseout="mOut(this)" >欢迎进入</font> </body> </html>
小伙伴们是否对javascript的事件有所认识了呢,有疑问就给我留言吧
javascript实现类似超链接的效果
- Author -
hebedich声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@