ページに「投稿」名の複数のdivタグがあります。送信をクリックしてサーバーにデータを投稿したいのです。jquery メソッドcommentPost()で textarea " commentText "の値を取得できません。
<div id="post">
<br>topic containtment is here
<form name="postComment" id="commentForm" action="javascript:void(0);" method="post"
target="_top" onsubmit="return commentPost();">
<textarea name="comment" id="commentText" cols="10" rows="3" accesskey="1">
</textarea><br>
<input type="submit" name="submit" id="commentpost" value="Submit" accesskey="2">
</form>
</div>
jQuery メソッド
function commentPost()
{
alert("Inside commentpost");
//how to get value of commentText
var comment=("form > commentText").val(); //<--not working
alert(comment);
//further code to be written
}
注意: ページには複数のdiv 投稿タグがあります。
テキストエリアの値を取得する方法.??