我有一个 jquery 和 ajax 执行查询并在单击按钮时显示一个表。问题是当页面第一次加载时,查询没有运行并且不显示任何内容,因此必须单击按钮才能开始显示查询结果。有没有办法在页面加载时运行查询?然后只需使用按钮。我的代码是:
$(document).ready(function() {
$("#display").click(function() {
$.ajax({ //create an ajax request to display.php
type: "GET",
url: "genquery.php",
dataType: "html", //expect html to be returned
success: function(response) {
$("#responsecontainer").html(response);
//alert(response);
}
});
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table border="1" align="center">
<tr>
<td> <input type="button" id="display" value="Buscar" /> </td>
</tr>
</table>
<div id="responsecontainer" align="center">
</div>
蓝山帝景
侃侃尔雅