我想运行一个基于 eq() 选择器的函数:
$('div.entry-content div.one_fifth').eq(0, function(){
$(this).css({background: 'url(../wp-content/themes/genesis/images/plant_hire.jpg) no-repeat center'});
$(this).on('hover',function(){
alert('Test');
});
});
我的语法有什么问题,因为内部函数不起作用
谢谢