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

ajax 返回数据 无法得到其属性的解决办法

时间:2014-11-25 22:54:14      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   color   os   使用   sp   java   数据   

当我们用ajax无法 得到其属性。正常情况下是:

<script type="text/javascript">
        function useAjax(sendUrl,name){

            $.ajax({
                type: "POST",
                url: sendUrl,
                data: { txtCode: $("#txtCode").val() },
                datatype: "json",
                timeout: 20000,
                success: function (json) {

      //无法使用的属性
                   alert(json.msg);
              
                },
                error: function (XMLHttpRequest, textStatus, errorThrown) {
                   
                }
            } );
        }
    </script>

如无法弹出其正常的属性值则需要用下面的方法解决:

<script type="text/javascript">
        function useAjax(sendUrl,name){

            $.ajax({
                type: "POST",
                url: sendUrl,
                data: { txtCode: $("#txtCode").val() },
                datatype: "json",
                timeout: 20000,
                success: function (json) {
                   //正常的使用的属性
                    json=JSON.decode(json);
                },
                error: function (XMLHttpRequest, textStatus, errorThrown) {
                    alert(1);
                }
            } );
        }
    </script>

ajax 返回数据 无法得到其属性的解决办法

标签:style   http   io   color   os   使用   sp   java   数据   

原文地址:http://www.cnblogs.com/WZH75171992/p/4121776.html

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