日期:2014-05-17 浏览次数:20519 次
'HTML'
        var AjaxRefresh = function () {
            $.ajax({
                url: "/Test/TestAjaxFresh",
                dataType: "json",
                type: "post",
                success: function (result) {
                    $("#firstDiv").html(result.data);
                }
            })
        }
------解决方案--------------------
试试这样
var categoryId = $(this).attr("title");
$.post(
"GetDocumentByCategoryId",
{CategoryId:categoryId},
function(data)
{
  alert(datas);
});