我已经在堆栈上搜索但我找不到任何东西。
我有一个page.php
在此页面中有一个表单
<script>
$(document).ready(function(){
$('#submit').click(function(){
var name = $('.myname').val();
var data = 'myname='+name;
$.ajax({
type:"POST",
url:"welcome.php",
data:data,
success: function (html){
$('.myname').val(''),
$('#message').html(html),
$('#resultat').show();
}
});
return false;
});
});
</script>
<div id="message"></div>
<form>
<label>Enter your Name</label>
<input type="text" name="uname" id="uname" class="uname"/> <br/>
<input type="submit" id="submit"/>
</form>
<div id="resultat">
<table class="table table-bordered table-striped mb-none display" id="menuTable" >
<thead>
<tr>
<th>Rub</th>
<th>Publish</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td><?php $result['rub'] ?></td>
<td><?php $result['id'] ?></td>
<td><?php $result['id'] ?></td>
</tr>
</table>
</div>
我想用数据库中的新表更新div #resultat。但我不能。
我不想加载外部文件,只刷新div#resultat。
由于