进行表单验证。如果字段验证失败,我希望更改颜色并摇动该字段。我的代码:
$('#'+vet)
.css({'background-color':'yellow','border-color':'red'})
.animate({ left: "-10px" }, 100).animate({ left: "10px" }, 100)
.animate({ left: "-10px" }, 100).animate({ left: "10px" }, 100)
.animate({ left: "0px" }, 100);
它确实改变了字段背景和边框颜色,但字段不会晃动。
有什么想法吗?