を生成する代わりに、Jqueryの妥当性検査で既存の要素にエラーメッセージを入れます。Jquery validation plug-inを使用して、以下の2つの入力要素を検証します。 入力が無効である場合には、プラグインのような、右の入力フィールドの後にラベル・タグを生成します。<label for="company" style="">Required !</label>
<label>タグ
質問: はどのように私は代わりに新しい<label>
を生成する存在<span class="help-inline">
にエラーメッセージを入れていますか?
ご協力いただきありがとうございます。
<script type="text/javascript">
$('#signUpForm').validate({
debug: false,
rules: {company:"required",username:"required"},
messages: {company:"Required !",username:"Required !"}
})// End of validate()
</script>
<div class="control-group">
<label class="control-label" for="company">Company Name</label>
<div class="controls">
<input type="text" name="company">
<label for="company">Required !</label> // -> this line is generated by Plug-In.
<span class="help-inline">(required)</span>
</div>
</div>
<div class="control-group">
<label class="control-label" for="username">User Name</label>
<div class="controls">
<input type="text" name="username">
<span class="help-inline">(required)</span>
</div>
</div>
こんにちはSparky、 答えをいただきありがとうございます、それは私の望むように動作し、デモリンクは明るいです! –