gpt4 book ai didi

javascript - 在 mvc 中使用 ajax 或 jquery 更改 View

转载 作者:行者123 更新时间:2023-11-30 20:24:46 26 4
gpt4 key购买 nike

我正在尝试发送数据和更改 View 。我设置了断点,第二个 View 有效但没有显示给我。我不想使用 Html.BeginForm,因为我正在使用 hmtl 和 javacript。

public ActionResult Second(int id)
{
List<Properties> users = GetData(id);
return View(users);
}

$('select').on('change', function (e) {
//var id = $(this).find(":selected").val()
var id = this.selectedIndex;
var targetUrl = '/Home/Second/' + id.toString();
$(this).load(targetUrl);
});

最佳答案

我解决了

$('select').on('change', function (e) {
var id = this.selectedIndex;
var targetUrl = '/Home/Second/' + id.toString();
location.href = targetUrl;
});

关于javascript - 在 mvc 中使用 ajax 或 jquery 更改 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51038312/

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