我正在使用 jQuery Load 方法。
$('#tabs-1').load("@Html.Raw(Url.Action("IndexTpUse",
"Transactions"))", completed);
function completed(response, status, xhr)
{
}
我需要的是将加载方法中的附加参数发送到已完成的函数中。有可能吗?
所以我的最终结果可能是这样的:
function completed(response, status, xhr, additionalParam)
{
}
由于
答案 0 :(得分:1)
您可以使用bind
预定义某些函数参数:
$('#tabs-1').load("@Html.Raw(Url.Action("IndexTpUse","Transactions"))", completed.bind(null, 'my param value'));
function completed(additionalParam, response, status, xhr)
{
}