我有一个表格
<form id="post_comment" action="cmt.php" method="post">
<input type="hidden" name="type" value="sub" />
<textarea id="body"></textarea>
</form>
我正在使用此代码访问表单
$("#post_comment").submit(function(event){
var form = $(this);
});
我怎样才能<input type="hidden" name="type" value="sub" />
从这个表格中获得价值。我试图开始使用form.input("type")
,但它不起作用。