0
 <script language="javascript" type="text/javascript">
        $(function () {
            /* HTML Menu Example Code */
            $('#GlobalNav')
                .load('http://navservice.intranet.hpr/api/gethtml', function(){               
                  initmenu();
              });                     
         });
    </script>

我如何将它转换成这样的东西?除了数据类型是来自 web 服务的纯 html 吗?

          $.ajax({
                url: "Common.asmx/InsertClient",
                type: "POST",
                dataType: "json",
                data: "{BizName:'" + BizName + "'}",
                contentType: "application/json; charset=utf-8",
                success: function(msg) {
                    $('#status').html('Id: '+msg['d']['Id']);

                }
            });
4

1 回答 1

0

$.ajax

$.ajax({
    url: 'http://navservice.intranet.hpr/api/gethtml',
    type: 'GET',
    success: function (html) {
        $("#GlobalNav").html(html);
    }
});

...或者$.get

$.get('http://navservice.intranet.hpr/api/gethtml', function (html) {
    $("#GlobalNav").html(html);
});

请记住,.load回调函数接受从服务器检索到的 HTML,因此您可以继续使用它,具体取决于您要完成的工作。

于 2013-02-13T18:09:58.130 回答