<div id="post">
<form name="postComment" id="commentPost6" action="javascript:void(0);" method="post"
target="_top" onsubmit="return commentPost(6)">
<textarea name="comment" id="comment6" class="commentText"
cols="10" rows="3" accesskey="1">
</textarea><br>
<input type="submit" name="submit" id="commentpost" value="Submit" accesskey="2">
</form>
</div>
这是我的帖子div 标签,我有多个具有相同 id="post" 的 div 标签,表单和字段是动态生成的,表单和文本区域的 id都是唯一的,因此在点击时检索这些值没有问题提交时,我调用commentPost方法。
function commentPost(postId)
{
alert("Inside commentpost");
//how to retrive/access value of textarea here
}
如何获得文本区域的价值?以防万一
是的,我知道拥有多个具有相同 ID 的元素是无效的 HTML。