function CheckForm() {
var objName = document.getElementsByName("article_child__writer")[0];
var objText = document.getElementsByName("article_child__body")[0];
if ( objName.value == '' ) {
objName.focus();
alert("お名前を入力して下さい ");
return false;
}
if ( objText.value == '' ) {
objText.focus();
alert("コメントを入力して下さい ");
return false;
}
if ( !confirm( "書き込んでよろしいですか? " ) ) {
return false;
}
return true;
}
|