ajax成功事件没有解雇

时间:2011-03-04 04:54:36

标签: asp.net-mvc-2 jquery

在我的MVC aplciation中,我使用ajax post重新加载视图的某些部分。我正在使用以下jquery发布

          $.post(
                 '<%= Url.Action("SearchResult", "Search") %>',
                 { content: 'GetCallDetails' },
                 function (result) 
                     { success(result); }
             );

             function success(result) {
                alert("Test message.");
                 $("#player").html(result);
              }

从控制器我回来就像这样

  return PartialView("SearchResutPlayer", searchModel);

它没有部分重新加载ascx,我甚至看不到测试mesasage?有什么想法吗?

1 个答案:

答案 0 :(得分:1)

$.post('/SearchResult/Search',{ content: 'GetCallDetails' },
          function (result) 
             {
               success(result);
              }
       );

试试这个。

检查是否通过放置调试点来调用控制器中的操作