博客列表 >2018年.4月10号10:45分

2018年.4月10号10:45分

哈的博客
哈的博客原创
2018年04月10日 10:49:26517浏览

手抄代码792937376024522601.jpg443033796140386644.jpg

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
	<form action="api/checkphp" method="post">
	<fieldset>
	<legend>用户登录</legend>
	<p>
	<leble for="email">邮箱:</leble>
	<input type="text" name="email" id="email">
	</p>
	<p>
	<leble for="password">密码:</leble>
	<input type="password" name="password" id="password">
	</p>
	</fieldset>
	</form>
</body>
</html>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript">
$('button:first').click(function () {
    /** //1获取提交按钮
     var url = 'api/user.php?m=login'
     //2设置提交的数据
     var data = {
     	'email':$('#email').var(),
     	'password':$('password').var()
     }
     //设置成功回调函数
     var success = function(res){
     	 if (res=='1') {
     	 	$('#tips').text('登录成功.正在加载...')
     	 	setTimeout(function()){
     	 		location.href = 'api/index.php'
     	 	},2000)
     	 }else{
     	 	$('#tips').text('邮箱或密码错误,请重新输入...')
     	        $('#email').focus()
     	        setTimeout("tips.innerHTML = ''",2000)
     	 	}
     	 }
     	 //4设置返回的数据格式
     	 var dataType = 'json'
     	 //5调用全局函数$.post()
     	 $.post(url, data, success, dataType)
     	 return false	
})

*/
//简写
$.post(
	'api/user.php?m=login'
	 {
     	'email':$('#email').var(),
     	'password':$('password').var()
     },
     function(res){
     	 if (res=='1') {
     	 	$('#tips').text('登录成功.正在加载...')
     	 	setTimeout(function()){
     	 		location.href = 'api/index.php'
     	 	},2000)
     	 }else{
     	 	$('#tips').text('邮箱或密码错误,请重新输入...')
     	        $('#email').focus()
     	        setTimeout("tips.innerHTML = ''",2000)
     	 	}
     	 }
	)
    return false
</script>

运行实例 »

点击 "运行实例" 按钮查看在线实例


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议