0
因此,默認情況下,jQuery Validation創建一個'標籤'元素與錯誤消息之後的違規輸入字段與通用消息(即Im罰款)。但是,我希望標籤看起來就像您在美樂網站上看到的jQuery UI警報消息。jQuery Validatation插件錯誤標籤自定義的HTML
因此,而不是默認的:
<label for="fieldname" generated="true">JQUERY VALIDATE ERROR APPEARS HERE</label>
我想驗證使用下面的「包裝HTML」:
<div class="ui-widget">
<div class="ui-state-error ui-corner-all">
<p>
<span class="ui-icon ui-icon-alert"></span>
<strong>Alert:</strong> JQUERY VALIDATE ERROR MESSAGE WOULD APPEAR HERE
</p>
</div>
</div>
我看到改變錯誤類,消息類的幾種方式,甚至錯誤元素 - 但不是錯誤消息的'wrapper html'。任何人都得到了這個權利?