JS
$(".row").live("hover",
function()
{
$(".remove").fadeIn();
}
);
$(".row").live("blur",
function()
{
$(".remove").fadeOut();
}
);
HTML標記
<div class="row chapter" node="1">
<img class="remove" src="design/images/remove.png">
Sample
</div>
<div class="row chapter" node="2">
<img class="remove" src="design/images/remove.png">
Sample 2
</div>
我想要做的是,使用jQuery懸停功能有問題
- 淡入懸停事件,與
.remove
一流形象(其中 內部盤旋.row
div)和fa去模糊事件。 - 在
.remove
點擊,得到家長的div節點屬性
的jsfiddle
http://jsfiddle.net/tt13/3VG5P/3/
我缺少的東西?
http://jsfiddle.net/tt13/3VG5P/3/ – 2012-02-27 07:33:22
更新我的答案''.remove''的'click'事件。 – Stefan 2012-02-27 07:44:25