大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
index.html内容如下
创新互联-专业网站定制、快速模板网站建设、高性价比磐石网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式磐石网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖磐石地区。费用合理售后完善,十载实体公司更值得信赖。
ul{
list-style: none;
}
$(document).ready(function(){
$("#ajaxBtn").click(function(){
$.ajax({
'type':'get',
'url':'index.php',
'dateType':'json',
'data':$("input").serialize(),
'success':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);