.tablePlayButton {
display: block;
width: 16px;
background: transparent;
margin-top:2px;
margin-right: -10px;
margin-left: 2px;
height:17px;
}

tr:hover .tablePlayButton {
background: url(ton.png) top left no-repeat;
}

tr:hover .tablePlayButton:active {
background-position: bottom left;
}

tr:hover .tablePlayButton.playing,
.tablePlayButton.playing {
background: url(ton2.png) top right no-repeat;
}

tr:hover .tablePlayButton.playing:active,
.tablePlayButton.playing:active {
background-position: bottom right;
}


我这样绘制跨度:<span class="tablePlayButton"></span>

它有一个小按钮。当我单击它时,没有任何反应:

$(".tablePlayButton").click(function(){
        alert('hi');
    });

最佳答案

您可能在创建元素之前添加了点击处理程序。

尝试将Javascript代码移动到元素之后,或将其包装在$(function() { ... });中,以使其在文档加载后运行。

09-16 14:35