私は次のJavaScriptコードがあります。asp.net-mvc 3の@ Ajax.ActionlinkにJavascript変数を渡すことはできますか?
var idJS;
$('.disp').click(function() {
idJS = $(this).attr("id");
})
をそして、私はこれをしたい:
@Ajax.ActionLink("myMethod", "myMethod", "HomeController", new { id = idJS },
new AjaxOptions() { HttpMethod = "Get", UpdateTargetId = "myDiv" })
それがこれを行うことは可能ですか?
いいえ、できません – musefan