ASP.NET MVC 2 Html.ActionLink 与 JavaScript 变量
<%: Html.ActionLink("Cancel", "Edit", "Users", new {id = " + userID + " }, null) %>
在上面的代码中,userId 是一个变量。这个语法不对,应该怎样写呢?
<%: Html.ActionLink("Cancel", "Edit", "Users", new {id = " + userID + " }, null) %>
In the code above userId is a variable. This syntax is not right, what should it be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能使用在服务器上运行的 HTML 帮助程序来使用客户端上已知的 Javascript 变量。因此,您需要使用您在服务器上配置的信息生成 URL。所以你在服务器上能做的就是这样:
然后我想在客户端你正在做一些javascript(最好是jquery),然后当你想使用这个url和你计算出的userID来查询服务器时客户。例如,您可以通过附加一些 id 来动态修改链接操作:
或者如果您想 AJAX 化此链接:
You cannot use an HTML helper which is run on the server to use a Javascript variable which is known on the client. So you need to generate your URL with the information you dispose on the server. So all you can do on the server is this:
Then I suppose that on the client you are doing some javascript (ideally with jquery) and a moment comes when you want to query the server using this url and the userID you've calculated on the client. So for example you could modify the link action dynamically by appending some id:
or if you wanted to AJAXify this link: