div
当使用函数单击按钮时,我正在尝试为元素设置动画。但是,它不起作用。可能是什么问题?
JS:
function caller() {
$("#hfont1").animate({
"background-color": "#efbe5c"
}, 1000);
}
HTML:
<div id="hfont1">Test Stuff</div>
<button id="bid" onclick="caller()">Hit me!</button>
CSS:
#hfont1 {
color:#e8a010, font-size:48pt;
}
示例链接在这里:http: //jsfiddle.net/GELTP/1117/
更新:我知道使用选择器的方式,但问题是为什么它在使用时不起作用function _______
?