0

我有一个 .getJSON 方法。它在 IE 浏览器中运行良好,但在 Firefox 和 Chrome 等其他浏览器中无法运行。这是代码

<script src="Themes/Js/jquery_v_1.4.js"></script>
<script type="text/javascript">
        var url;
        $(document).ready(function () {
            url = "http://192.168.0.171:8080/api/account";
            $('#btnSubmit').click(function (e) {
                debugger;
                $.getJSON(url, function callback(data, status, jqXHR) {
                    debugger;
                    $('#<%= ddlList.ClientID %>').append('<p>Name : ' + jqXHR.responseText + '</p>');
                });
            });
        });
</script>

在 Firefox 和 chrome 中,控制不在函数回调中。请看看并给我建议。

4

3 回答 3

2

如果您的代码在 IE 上正常工作但不能在 Chrome 上正常工作,您可以尝试任何可用的虚拟服务器,如 Python 服务器,

按照步骤

1.在对应文件夹下运行命令(Linux下)

python -m SimpleHTTPServer

2.打开 Chrome 浏览器并浏览 localhost:8000/filename

于 2013-09-19T09:30:16.027 回答
0

它现在工作正常。

我在 Web api Global.asax 中添加了以下代码

protected void Application_BeginRequest(object sender, EventArgs e)
    {
        HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");
        if (HttpContext.Current.Request.HttpMethod == "OPTIONS")
        {
            HttpContext.Current.Response.AddHeader("Cache-Control", "no-cache");
            HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods", "GET, POST");
            HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", "Content-Type, Accept");
            HttpContext.Current.Response.AddHeader("Access-Control-Max-Age", "1728000");
            HttpContext.Current.Response.End();
        }
    }

谢谢大家的支持。。

于 2013-09-20T05:04:31.200 回答
0

我认为该debugger;声明可能仅在 IE 中受支持。拿出来试试

于 2013-09-19T04:49:51.223 回答