如何增加jQuery验证引擎错误消息的宽度(行)

问题描述 投票:0回答:1

这是验证输入字段:

<input class="descInput validate[required]"  data-errormessage="*Please enter 0 or integers greater 
than 4" data-prompt-position="topRight:-1,-1;" id="fixedPrice" name="fixedPrice" /></span>

错误消息(请输入...)正在包装。我不想包装红色错误消息。我知道它使用clases .formError .formErrorContent。最小宽度样式将如何被覆盖?

每个字段的修饰语和宽度将有所不同

width: 100%;
background: #B7110D;
position: relative;
color: #fff;
min-width: 120px;
font-size: 11px;
border: none;
font-family: Verdana;
box-shadow: 0 0 6px #000;
-moz-box-shadow: 0 0 6px #000;
-webkit-box-shadow: 0 0 6px #000;
-o-box-shadow: 0 0 6px #000;
padding: 2px 10px 2px 10px;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;

Wrapped error message

jquery validation message jquery-validation-engine
1个回答
0
投票
added class to label
<label class="cssFixedpriceError">

.cssFixedAmtError .formError .formErrorContent {
   min-width: 420px;
}
© www.soinside.com 2019 - 2024. All rights reserved.