鼠标效果,使用方法可多处调用
<
!DOCTYPE html>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
>
<
meta
http-equiv
=
"Content-Type"
content
=
"text/html; charset=utf-8"
/>
<
title
>鼠标效果,使用方法可多处调用</
title
>
<
script
type
=
"text/javascript"
>
function mOver(object) {
object.style.color = "blue";
}
function mOut(object) {
object.style.color = "black";
}
</
script
>
<
style
type
=
"text/css"
>
a {
color:black;
text-decoration:none;
}
</
style
>
</
head
>
<
body
>
<
a
href
=
"http://www.baidu.com"
onmouseover
=
"mOver(this);"
onmouseout
=
"mOut(this);"
>Hello World!</
a
>
</
body
>
</
html
>