jQuery Validation Plugin https://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.js ( http://jqueryvalidation.org/documentation/ )でシンプルなフォームを使用しています。
label .errorクラスが呼び出されると、入力フィールドの下に表示されます。これを通常のラベル名とインラインで表示するにはどうすればよいですか
リンク: i.imgur.com/KchiGeF.jpg
<label>Your Name</label>
<input name="phone" id="phone" required type="text" size="40" >
JQuery 関数
$(document).ready(function () {
$('#myform').validate({ // initialize the plugin
rules: {
phone: {
required: true,
minlength:10
}
}
});
});