你好,如果你沒有得到在形式的客戶端驗證提交時間你用tinymce試試這個代碼 假設你有兩個html編輯器1是txtAboutCompanyan d 2是txtProductinfo
這是客戶端代碼
<div class="divclass">
@Html.LabelFor(model => model.txtAboutCompany, new { @class = "required" })
@Html.EditorFor(model => model.txtAboutCompany)
<span class="field-validation-error" id="AC" style="margin:9px 0 0 157px;"></span>
</div>
這是jQuery的
$("#BusinessProfile").click(function() {
var aboutC = $("#txtAboutCompany").val()
var pinfo = $("#txtProductinfo").val();
if (aboutC == "" && pinfo == "") {
$("#AC").append("").val("").html("Please enter about company")
$("#PI").append("").val("").html("Please enter product information")
$("#bpform").valid();
return false;
} else if (aboutC == "") {
$("#PI").append("").val("").html("")
$("#AC").append("").val("").html("Please enter about company")
$("#txtAboutCompany").focus();
$("#bpform").valid();
return false;
} else if (pinfo == "") {
$("#AC").append("").val("").html("")
$("#PI").append("").val("").html("Please enter product information")
$("#txtProductinfo").focus();
$("#bpform").valid();
return false;
}
else {
$("#AC").append("").val("").html("");
$("#PI").append("").val("").html("");
//return true;
$("#bpform").validate();
}
});
你可以得到你的表單都需要驗證提交時間
我知道這是不正確的方式,但你可以做到這一點。
http://stackoverflow.com/questions/11371966/tinymce-jquery-form-validation/22170043#22170043 – 2014-03-04 11:09:14