Jquery 表单结果为 div

JqueryForm result in a div

我正在使用 jQuery 表单插件 API 提交表单。它在后台提交,但我如何在 div(ID posthere)中显示此结果(actionpage.php),如下所示。

<form id="myForm" action="actionpage.php" method="post"> 
    Name: <input type="text" name="name" /> 
     <input type="submit" value="Submit Comment" /> 
</form>
<script>
$('#myForm').ajaxForm();
</script>

<div id="posthere" ></div>

请尝试以下代码。

$("#myForm").ajaxForm({
    success: function(res, status, xhr, form) {
        // This will show the direct res over here, you can format it as per your need.
        $('#posthere').html(res);
    }
});