在 SharePoint 2010 表单中,富文本字段不呈现为表单元素,而是呈现为 div。我需要使用 jQuery Validator Plugin 来检查这个 div 的内容。
<form>
<!-- this will validate -->
<select class="check_this">
<option>Testing form element</option>
</select>
<!-- this will not validate -->
<div class="check_this">
Testing div
</div>
</form>