会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
记录我学习的过程
导航
博客园
首页
新随笔
联系
订阅
管理
公告
hover()
Code
1
<
html
xmlns
="http://www.w3.org/1999/xhtml"
>
2
<
head
id
="Head1"
runat
="server"
>
3
<
title
></
title
>
4
5
<
script
type
="text/javascript"
src
="JS/alice.js"
></
script
>
6
<
style
type
="text/css"
>
7
8
.hover
9
{
}
{
10
cursor
:
pointer
;
//设置鼠标的样式
11
background-color
:
#afa
;
//鼠标移上去变色
12
}
13
</
style
>
14
15
<
script
>
16
$(document).ready(
function
()
{
17
18
$(
"
p
"
).hover(
function
()
{
19
$(
this
).addClass(
'
hover
'
);
20
}
,
function
()
{
21
$(
this
).removeClass(
'
hover
'
);
22
}
);
23
}
);
24
25
</
script
>
26
</
head
>
27
<
body
>
28
29
p>我变色来的哦!呵呵
</
p
>
30
<
body
>
31
</
html
>
32
hover() 一个模仿悬停事件的方法。 在这个方法中有两个对象,当鼠标移上去时会触发第一个对象,当鼠标移开时会触发第二个对象。
posted on
2009-06-18 14:07
ruibo
阅读(
338
) 评论(
3
)
编辑
收藏
举报
刷新页面
返回顶部