大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
index.html内容如下:
创新互联建站坚持“要么做到,要么别承诺”的工作理念,服务领域包括:网站制作、做网站、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的姜堰网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!
ul{
list-style: none;
}
$(document).ready(function(){
$("#ajaxBtn").click(function(){
$.post("index.php",$(".ipt-style").serialize(),function(res){
console.log(res);
});
});
});
index.php内容如下:
header("Content-type:text/html;charset=utf-8");
$username = $_POST['username'];
$password = $_POST['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);