如何在jquery中为localhost url发帖

时间:2014-03-15 08:21:25

标签: jquery ajax post

我只需要使用普通的Jquery $ Post进行发布。

  

$ .post('http:// loc @ lhost:8084 / restdemo / webresources / employee / 1',{ser:ser},function(data)   {       $( '#成功')HTML(数据)。 });

请建议我与此链接进行沟通。

1 个答案:

答案 0 :(得分:0)

$.ajax({ url: "webresources/employee/1", contentType: "application/json; charset=utf-8", type: "POST",
     data: '{"id":' + id + '}',
     success: function (result) {
         if (result == null || result.d == null) return;
           $('#success').html(result.d); 
});

您不需要粘贴本地主机的完整网址。只需要Web方法位置的相对路径。