如何将razor变量作为参数传递给jquery函数

时间:2011-03-03 10:13:52

标签: asp.net asp.net-mvc-3

我正在使用以下代码:

<a href="#" onclick="Edit(@Interest);">edit</a>

我在哪里

@{string Interest=""}

2 个答案:

答案 0 :(得分:6)

你需要引用这样的字符串:

<a href="#" onclick="Edit('@Interest');">edit</a>

答案 1 :(得分:1)

如果你想调用一个方法,例如@ Url.Action(“test”)为动作链接,然后你必须使用它:

<a href='@(Url.Action("test"))'>test</a>

否则korchev的解决方案是正确的。