这不起作用,不确定是什么问题。我根本不想使用 href onclick,我通常在 ahref 链接上使用 id,然后以这种方式执行 javascript,但我需要将参数从链接传递给函数,不确定是否还有其他选择?
未显示使用参数的代码,它基本上是一个论坛链接,但它会将主题加载到 div
function changetotopicdetails(topicid, topicname) {
$('#loadingAjaxs').show();
$('#flubestext').hide();
<a href="javascript:changetotopicdetails(@following.Id, @following.ShortName);">@following.Title</a>
我通常会做类似的事情
$('#changeuserstwohour').click(function () {
$('#userswrap').load('@Url.Action("TrendingUsersMenutwohr", "Trending")');
});
但是这样做我不能在循环期间向函数发送参数(主题列表)
有什么建议么?
答案指出我需要将变量传递给新的 {}
$('#changeuserstwohour').click(function () {
$('#userswrap').load('@Url.Action("TrendingUsersMenutwohr", "Trending", new {@theid = id, @thename = name})');
});