<script>
function check() {
if (document.post.subject.value.trim()==""){
alert("내용을 입력해 주세요.");
document.post.content.focus();
return;
}
document.post.submit();
}
String.prototype.trim = function() {
return this.replace(/(^\s*)|(\s*$)/gi, "");
}
</script>
댓글 없음:
댓글 쓰기