我有一个验证,取决于它是正确还是错误,我希望它以不同颜色为文本框背景颜色设置动画:如果错误则为红色,如果正确输入则为绿色。我尝试了所有不同的组合,但我不能让它工作。
$("#PersonId").animate({background: "#ff2cf0"});
$( "#PersonId" ).animate({
backgroundColor: "#aa0000",
}, 1000 );
等等。我做错了什么?我已经将JQuery UI文件实现到我的.NET项目中,所以我认为它没有任何问题。
答案 0 :(得分:0)
您需要加入jQuery color animations plugin。
$( "#PersonId" ).animate({
backgroundColor: "#aa0000",
}, 'fast');