扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
index.html内容如下:
创新互联是一家专业提供澧县企业网站建设,专注与成都网站制作、做网站、H5网站设计、小程序制作等业务。10年已为澧县众多企业、政府机构等服务。创新互联专业网络公司优惠进行中。
ul{
list-style: none;
}
$(document).ready(function(){
$("#ajaxBtn").click(function(){
$.get("index.php",$(".ipt-style").serialize(),function(res){
console.log(res);
});
});
});
index.php内容如下:
header("Content-type:text/html;charset=utf-8");
$username = $_GET['username'];
$password = $_GET['password'];
$res = array('code'=>1,'msg'=>'','data'=>[]);
if($username == 'ceshi' && $password == '123456'){
$res['msg'] = "success";
}else{
$res['code'] = 0;
$res['msg'] = 'fail';
}
echo json_encode($res);
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流