jquery live hover绑定方法
$(".select_item span").live({
mouseenter:
function()
{
$(this).addClass("hover");
},
mouseleave:
function()
{
$(this).removeClass("hover");
}
});
注意:jquery1.9以上版本不支持live,新方法为on
//成功一定有方法,失败一定有原因。