3
我有代碼看起來像這樣:更好的方式來寫一個reptitive功能?
$('.item-one').mouseover(function() {
$('.img-one').addClass('fit-img');
});
$('.item-two').mouseenter(function() {
$('.img-two').addClass('fit-img');
});
$('.item-three').mouseenter(function() {
$('.img-three').addClass('fit-img');
});
有沒有更好的方式來寫一樣的東西,即使它的工作原理上面?
不要for循環爲這些事情的工作? –
你可以顯示Item-one/two/three和Img-one/two/three的HTML嗎? –
你有'mouseover'和'mouseenter'的混合物 - 那是故意的嗎? –