我的页面中有多个 div 标签的“ post ”名称,我想做的是在提交点击时在服务器上发布数据。我无法在我的 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 post标签。
如何获得文本区域的价值。??