标签绑定mou
SEOut和mou
SEOver事件。bind({事件名:function(){},事件名:function(){}})的
方法绑定多个事件
$("#div li").bind({
mou
SEOut:function () {
$(this).css("color","black").html("☆").prevAll().css("color","black").html("☆")
},mou
SEOver: function () {
$(this).css("color","red").html("★").prevAll().css("color","red").html("★")
}
});
//=实时
显示分数.【index】
搜索匹配的元素,并返回相应元素的索引值,从0开始计数。
$("#div li").mou
SEOver(function () {
$("#p").html(parseInt( $(this).index("#div li"))+1);
});
//鼠标按下时,确定分数。额,就不更改了,大局已定。
$("#div li").mousedown(function () {
$("#
score").html(("你选择的分数是" + (parseInt($(this).index("#div li")) + 1)));
$(this).css("color","red").html("★")
//全部li
标签的绑定事件全部清除--unbind
方法可以加参数清除特定的事件。不加全部清除
$(this).unbind().prevAll().unbind().nextAll().unbind();
});
})