首頁 >後端開發 >php教程 >ajax?表单出错

ajax?表单出错

WBOY
WBOY原創
2016-06-20 12:49:42986瀏覽

 <body>       <form>            Name:<input type="text" id="txt" >            <input type="button"  value="提交" onclick="A()" >       </form>    </body>    <script>            function A() {                $.ajax({                    url: 'b.php',                    type: 'post',                    dateType: 'json',                    data: {name: $("#txt").val()},                    success: function (result) {                        alert(result.password);                      //点击提交按钮是,弹出信息 undefined  而不是  B??                    },                    error: function (result) {                        alert("error");                    }                });            }    </script>b.php:<?php   $result=array();   $result['name']=$_POST['name'];   $result['password']="B";   echo json_encode($result);   exit;?>



回复讨论(解决方案)

var result = jQuery.parseJSON(result); alert(result.password);

先alert(result)看看result是不是json对象。。。。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn