$(document).ready(function() { (因为是内容页面,所以id有变化) $('#btnSubmitMessage').click(function() { var txttile = $('#txtTitle').val(); var txtcontent = $('#txtContent').val(); if (txttile == "") { alert("留言的主题不能为空!"); return false; } else if (txttile.length > 15) { alert("标题不能超过15个字哦!"); return false; } else if (txtcontent == "") { alert("留言的内容不能为空!"); return false; } else { // 清空 $('#txtTitle').val(""); $('#txtContent').val(""); return true; } }); });
