我有这个代码:
<div id='mainTop'>
<span></span>
<button><h3>Search</h3></button>
<div class='inputField'><input type='text' name='search' size=45></div>
</div>
<script>
function showPage(page,key) {
if(!key)
$.get("showPage.php?page="+page,function(data){
/**
* Insert HTML result from PHP file
* Then edit table color
* In the end call function buttonPage()
*/
$("#mainTable").html(data);
$("#mainTable tr:odd td").css("background-color","#e3f0ad");
buttonPage(page);
});
else
$.get("showPage.php?page="+page+"&key="+key,function(data){
$("#mainTable").html(data);
$("#mainTable tr:odd td").css("background-color","#e3f0ad");
buttonPage(page,key);
});
}
$("#mainTop button").click(function(){
key= $("#mainTop input").val();
if(!key)
showPage(1,key);
});
</script>
我想要的是有一个输入字段和一个按钮来搜索数据库。
如果 key 为空,那么我不会将 key 参数传递给 php 文件,而只是打印出数据库。
如果键不为空,则将键参数传递给 php 文件并使用该键在数据库中搜索。
我尝试自己运行 php 文件并且它可以工作,但是当我单击按钮时没有任何反应,所以我认为我的脚本有一些问题。有人可以帮助我吗?