在 MVC 3 中使用 jquery 加载视图
我使用 MVC 3
。在视图中我有 2 个单选按钮。当我单击两个单选按钮之一时,我尝试使用 jquery 加载视图。但这不起作用。
我对 MVC 和 jQuery 完全陌生。
这是我的代码:
$('radioButtonFor#dutch').click(function () {
load('/MyController/MyView', parameterForTheView)
});
这是单选按钮之一:
@Html.RadioButtonFor(m => m.IsBelg, false, new { id = "dutch" })
请帮助我!
罗纳德
I work with MVC 3
. In a view I have 2 radio buttons. When I click on one of the two radiobuttons then I try with jquery to load a view. But it doesn's work.
I am completley new to MVC
and jQuery
.
Here is my code:
$('radioButtonFor#dutch').click(function () {
load('/MyController/MyView', parameterForTheView)
});
And here is one of the radio buttons:
@Html.RadioButtonFor(m => m.IsBelg, false, new { id = "dutch" })
Please help me!
Ronald
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您对单选按钮的 jquery 引用应如下所示:
Your jquery reference to the Radio Button should read as follows:
load方法是你自己的方法吗?
jquery 应该看起来像
is load method your own method?
jquery should look like