$(function() {
?? ?var flag = true;
?? ?$("#replyContent").blur(
?? ??? ??? ?function() {
?? ??? ??? ??? ?$("#content_info").html("");
?? ??? ??? ??? ?var str = $(this).val();
?? ??? ??? ??? ?var content="";
?? ??? ??? ??? ?content= str.replace(/\s+/g, "");
?? ??? ??? ??? ?if (content.length == 0) {
?? ??? ??? ??? ??? ?$("#content_info").css("color", "red").html("内容不能为空")
?? ??? ??? ??? ??? ??? ??? ?.fadeIn("slow");
?? ??? ??? ??? ??? ?flag = false;
?? ??? ??? ??? ?} else {
?? ??? ??? ??? ??? ?flag = true;
?? ??? ??? ??? ?}
?? ??? ??? ?});
?? ?$("#replySubmit").click(function() {
?? ??? ?return flag;
?? ?});
});
详细解决方案
js去除回车与空格
热度:371 发布时间:2013-09-30 09:50:49.0
相关解决方案