我正在尝试使用AjaxOptions.OnSuccess来调用javascript函数并将参数传递给它。我可以毫无问题地调用不带参数的基本函数,这只是参数传递。
这是我的JS函数:
<script type="text/javascript">
function removeRow (itemId) {
alert(itemId);
}
</script>
以及我在 Razor 中的AjaxOptions声明:
New AjaxOptions With {.OnSuccess = "function(){removeRow(" + item.Id.ToString + ");}"}
在客户端,链接如下所示:
<a data-ajax="true" data-ajax-success="function(){removeRow(3);}" href=...
知道我在做什么错吗?
谢谢!
最佳答案
试试这个:
New AjaxOptions With {.OnSuccess = String.Format("removeRow({0})", item.Id) }