标签:
解决方法:
//作用于整个html中 function check(form) { //topic是input的id,descrip是textarea的id var topic = $("#topic").val().length; var descrip = $("#descrip").val().length; if(topic<3 || topic>15) { alert("话题不得小于3个字或大于15个字"); return false; }; if(descrip<4 || descrip>40) { alert("描述不得小于4个字或大于40个字"); return false; }; return true; } //页面加载完毕 $(function() { //绑定submit方法,form_submit是表单form的id $("#form_submit").on(‘submit‘, function (submit) { return check(this); }); });
标签:
原文地址:http://www.cnblogs.com/shenyangxiaohuo/p/5236911.html