使用jquery ajax的问题

时间:2011-06-03 08:37:23

标签: ajax jquery


我不知道下面的代码中的实际问题是什么,但它不能像我预期的那样工作。

<html>
<head>
<script type='text/javascript' src='jquery-1.4.2.min.js'></script>
<script type='text/javascript'>
$(document).ready(function(){ 
    $('#clickme').click(function(){
        var uid="sekar@example.com";
        var upass="sample";
        $.ajax({
            type : 'GET',
            url : 'http://www.example.com/test.php',
            data: {
                em : uid,
                pass : upass,
                action : 'check'
            },
            success : function(msg){
                alert(msg);
            },
            error : function(XMLHttpRequest, textStatus, errorThrown){alert(errorThrown);}
        });
    });
});
</script>
</head>
<body>
<input type='button' value='click' id='clickme' />
</body>

</html>

在那个test.php中,我只是尝试echo "hello world"echo $_GET['action'] 但这一切都没有,我只得到空信息?在这个问题上有人可以帮助我吗? 谢谢!

2 个答案:

答案 0 :(得分:2)

您的代码中没有错误。但绝不使用GET传递密码。 我创建了两个文件test.html和test.php。

Code of test.html:
<!-- language: html-->
 <html>
 <head>
 <script type='text/javascript' src='js/jquery.js'></script>
 <script type='text/javascript'>
 $(document).ready(function(){ 
    $('#clickme').click(function(){
        var uid="sekar@example.com";
        var upass="sample";
        $.ajax({
            type : 'GET',
            url : 'test.php',
            data: {
                em : uid,
                pass : upass,
                action : 'check'
            },
            success : function(msg){
                alert(msg);
            },
            error : function(XMLHttpRequest, textStatus, errorThrown){alert(errorThrown);}
        });
    });
 });
 </script>
 </head>
 <body>
 <input type='button' value='click' id='clickme' />
 </body>

 </html>

code of test.php:
<!-- language: php -->
 <?php
   echo $_GET['action'];
 ?>

答案 1 :(得分:1)

是因为数据必须是字符串吗?

data: "em="+uid+"&pass="+upass="&action=check",