表单验证,在每一个有requred类的文本框后加入“*”以提示必填项
$("form :input.required").each(function(){
var $required = $("<strong class='high'> *</strong>"); //创建元素
$(this).parent().append($required); //追加到文档中,注意parent()方法的使用
})
来源http://www.cnblogs.com/youcai/archive/2011/08/10/2133585.html