0
<!DOCTYPE html>
<html>
<head>
<title>Comments</title>
</head>
<body>
<form id="commentForm" name="commentForm" onsubmit="return(validate());">
<div class="row">
<div class="col-sm-12 form-group">
<textarea class="form-control" id="comments" name="comments" placeholder="Leave comment..." rows="3"></textarea><br>
<button class="btn pull-right" type="submit">Send</button>
</div>
</div>
</form>
</body>
</html>
ブートストラップ
を使ってコメントフォームはありだと私はJSの検証<script type="javascript">
function validate()
{
if(commentForm.comments.value == "")
{
alert("Please leave your comment!");
commentForm.comments.focus() ;
return false;
}
</script>
行が空の場合にチェックしますと書いたが、それがすべてでは動作しません。私を助けてください、どうすれば修正できますか?