gpt4 book ai didi

c# - 复选框事件重新加载页面

转载 作者:太空宇宙 更新时间:2023-11-03 18:41:45 25 4
gpt4 key购买 nike

我正在使用 MVC 3 并且我有一个复选框:@Html.CheckBox("mycheckbox", myparam)

我想在选中/取消选中复选框时刷新页面。我该怎么做?

最佳答案

为此您需要使用 javascript。例如,您可以为复选框分配一个唯一的 ID(或类):

@Html.CheckBox("mycheckbox", myparam, new { id = "mycheck" })

然后使用 jQuery 订阅 .change()事件:

$(function() {
$('#mycheck').change(function() {
// the value of the checkbox changed => refresh the page:
window.location.reload();
});
});

关于c# - 复选框事件重新加载页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8066344/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com