我正在向我的 PHP 脚本发出 ajax 请求,该请求将回显一定数量的表(每次都不同),当用户单击 submit_form 按钮时,我希望将其包含在我的原始页面中。我的问题是如何让 Jquery 将此表显示到table_layout
div 中?
HTML:
<div id="table_layout"> </div>
查询
$( ".submit_form" ).click(function( e ) {
$.ajax({
type : 'GET',
url: 'draw_tables.php',
dataType : 'html',
data: dataString ,
error : function(XMLHttpRequest, textStatus, errorThrown) {
alert('error'); },
success : function(data) { //appendto.('#table_layout') }
});
return false;
})
PHP (draw_tables.php)
echo '<table>';
echo '<input type="text" name="ID">';
echo '<input type="text" name="CLASS">';
echo '</table>';