码迷,mamicode.com
首页 > Web开发 > 详细

第六十八天上课 jquery( josn )和( ajax )

时间:2016-05-16 21:51:14      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:

定义josn

//josn的定义方式,可以存放任何数据
var a={code:‘p001‘,name:‘张三‘,age:10};

 ajax基本使用方式(主界面代码)

<title>AJAX</title>
<script src="js/$Jquery.js"></script>
</head>
<body>
<div>
    <input type="text" id="uid" />
    <span id="xinxi"></span>
<div>
</body>
<script>
$(document).ready(function() 
{
    $(‘#uid‘).blur(function()
    {
        var uid=$(this).val();
        
        $.ajax
        ({
            url:"index1.php",  //锁定处理页面
            data:{uid:uid},    //传值,多个数据用逗号隔开
            type:‘POST‘,       //传输方式
            datatype:‘TEXT‘,   //返回数据的类型
            success:function(data)  //回调函数
            {
                if(data=="ok")
                {
                    var div="用户名已经被注册";
                    $(‘#xinxi‘).html(div);
                }
                else
                {
                    var div="用户名可用";
                    $(‘#xinxi‘).html(div);
                }
            }
        });
    });    
});
</script>
</html>

处理界面代码(index1.php)

<?php
$uid=$_POST[‘uid‘];
include "class/function.php";
$sql="select count(*) from info where Name=‘{$uid}‘";
$result=unionmysql($sql);
if($result[0][0]==1)
{
    echo "ok";
}
else
{
    echo "no";
}

 

第六十八天上课 jquery( josn )和( ajax )

标签:

原文地址:http://www.cnblogs.com/lovling/p/5497175.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!