StoreComment.js 212 B

12345678
  1. function StoreCommentFormCheck(){
  2. if (document.StoreCommentForm.content.value=="") {
  3. alert('评价/留言内容不能为空!');
  4. document.StoreCommentForm.content.focus();
  5. return false;
  6. }
  7. return true;
  8. }