我有一个下拉菜单,允许用户选择要查看的数据馈送。用户第一次选择一个时,我的 URL 如下所示:
http://localhost/DataFeeds/Viewer/1
在第二个选择中,它看起来像这样:
http://localhost/DataFeeds/Viewer/1/2
这显然是不正确的。1
应替换为2
.
这是导致它的代码:
$('select#ID').change(function () {
window.location.replace("@Url.Action("Viewer", "DataFeeds")/" + $(this).val());
});
我已经试过了
window.location.href = "@Url.Action("Viewer", "DataFeeds")/" + $(this).val();
但这做同样的事情。
所有建议表示赞赏。