我有一个html页面,它是由于点击页面上的搜索按钮而生成的。它从mySQL中获取记录并填充表格,但之后它有一个使用搜索参数作为输入的绘图并使用highcharts绘制图形。
页面结构:
<html>
<head>
<script>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
$(document).ready(function(){
$("#plotgenerator").click(function(e){
$.ajax();
});
</script>
</script>
</head>
<body>
<input type=TEXT value="" name="text">
<input type=SUBMIT value="search" name="search">
<table></table>
<input type=SUBMIT value="Submit" name="plotgenerator"> /*click button and fetch records using Ajax and generate a plot here.*/
<div id ="someplot"></div>
</body>
</html>
一旦表格被普及,应点击按钮plotgenerator并在此处生成图表。如何检查表已经填写并完成了?
答案 0 :(得分:1)
您的代码会在搜索之前检查表格。您的$(document).ready
在用户打开页面时运行。如果您使用&#39; $(document).on
,它可能会在搜索结果出现后检查表格。