$("#frmNewList").validate({
rules:{
price:{
required: true,
number: true
}
},
messages: {
price:{
required: "Please Enter The Price",
number: "Please Enter the amount only"
}
},
errorPlacement:function(f,g){
if(g.attr('id')=='price')
{
f.addClass('margin');
f.css({'margin-left':'-10px !important'});
}
});
<style>
.margin{margin-left:-10px !important;
}
</style>
ここで 2 つの質問があります。1) コードに示されている -10px のマージンを適用したいのですが、機能していません。2) コードに示されているマージン クラスを追加します。どちらも個別に追加されます。しかし、どちらも機能していません。