gpt4 book ai didi

javascript - 使用 windows.location.replace 重定向到 ItemID

转载 作者:行者123 更新时间:2023-12-02 22:58:03 25 4
gpt4 key购买 nike

是否可以使用windows.location.replace重定向到ItemID。比如,我有一个输入文本按钮,当用户输入123时,如果数据库中存在该项目,则需要重定向到该项目.

$.ajax({          
type: "GET",
URL: "/api/Akontas/GetAKONTA",
data: { id: $('#AkontasId').val() },
contentType: "data/xml; charset=utf-8",
success: function (result) {
window.location.replace("http://localhost:57285/api/Akontas/" + $('#AkontasId'));
},
error: function () {
alert("Ne postoji AKONTO pod tim rednim brojem");
}
});

如果存在则返回 xml 数据 enter image description here

否则返回未找到此 ID 的数据

enter image description here

更新

enter image description here

enter image description here

最佳答案

您需要更改此行:

window.location.replace("http://localhost:57285/api/Akontas/" + $('#AkontasId'));

对此:

window.location.href = "http://localhost:57285/api/Akontas/" + $('#AkontasId').val();

关于javascript - 使用 windows.location.replace 重定向到 ItemID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57901567/

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