我有一个点击事件,我想将一个类添加到点击的当前元素加上另一个元素,我想在一行中做到这一点。
我尝试过类似的东西
JS文件
$('div').click(function(){
$(this, 'span').css('background','yellow');
// could usethe following way but it's not DRY
// $(this).css('background','yellow');
// $('span').css('background','yellow');
});
HTML 文件
<div>
div
</div>
<span>
span
</span>
这是一个例如小提琴
但它不起作用,所以我怎么能不重复该css
方法。