1

更新

错误,我尝试查看更多教程,我决定首先使用 $.get(),因为它更容易且适合起点..

所以这是脚本,我认为它可以正常工作,除非它给出未定义的结果

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Display Json</title>
<script src="../_js/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
    $(document).ready(function()
    {
        $('#jsonButton').click(function()
        {
            var data = ''
            $.get('getJson.php', data, response);
        });//end click
    });//end ready

    function response(data)
    {
        $('#display').prepend('<p>' + data.name + data.phone + '</p>');
    }
</script>
<body>
    <div id="display">

            <input type="button" id="jsonButton" value="getJson!" />

    </div>
</body>
</html>

这是返回简单 JSON 对象的 getJson.php 简单 php 脚本:

$data['name'] = 'username';
$data['phone'] = '08989808089';

header('Content-Type: application/json');
echo json_encode($data);

当我单击“getJson”按钮时,它显示未定义

4

3 回答 3

3

那是因为您的选择器不正确

$('submit').click(function()
//-^^^^^----here

它应该是

 $('input[name="submitButton"]').click(function(){
  ....  
}

或者给你的按钮一个 id 并使用 id 选择器#

 <input type="submit" name="submitButton" value="getJson!" id="getjson"/>

  $('#getjson').click(function(){
   ......

或者你可以使用

$('input:submit').click(function(){ 
  .....
});

更新

对于未定义的,您可以调用回调函数.....

$.get('getJson.php', data, function(data){
    $('#display').prepend('<p>' + data.name + data.phone + '</p>');
});
于 2013-05-17T09:21:23.183 回答
0

您需要选择正确的按钮来绑定点击事件。

$('input:submit').click(function(){  });
于 2013-05-17T09:21:42.823 回答
0

我不是 100% 确定你的选择器是正确的。我会给按钮一个 id 并使用它。

<script type="text/javascript">
    $(document).ready(function()
    {
        $('#mybutton').click(function()
        {
            $.ajax(
            {
                type: 'GET',
                url: 'getJson.php',
                dataType: 'json',
                success: function(jsonData)
                {
                    $('#display').prepend('<p>' + jsonData.name + '  ' + jsonData.phone + '</p>');
                }
            });//end ajax
            return false;
        });//end click
    });//end ready

</script>
    <body>
        <div id="display">

                <input id="mybutton" type="button" name="submitButton" value="getJson!" />

        </div>
    </body>

在此处阅读正确的 jquery 选择器

http://www.w3schools.com/jquery/jquery_ref_selectors.asp

您可以使用许多不同的选择器将点击事件附加到该按钮。

编辑:将输入的类型也更改为按钮...提交用于表单

于 2013-05-17T09:21:54.370 回答