// 糟糕
$first.click(
function
(){
$first.css(
'border'
,
'1px solid red'
);
$first.css(
'color'
,
'blue'
);
});
// 建议
$first.on(
'click'
,
function
(){
$first.css({
'border'
:
'1px solid red'
,
'color'
:
'blue'
});
});