启动 net start mysql
停止 net stop mysql
Linux 下(Centos)
启动 service mysql start
停止 service mysql stop
用ajax调用php。查询按钮点击时触发该事件。
$(function(){
$("#querybtn").click(function(){
$.ajax({
type: "post",
url: "你的php处理.php",
success:function(data){
在此判断一下data
如果data的值回调了,就显示数据,否则就显示数据加载中或者进度条(具体样式可以根据需要设置)。
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(errorThrown)
}
})
})
})
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)