具有相对url的window.location

window.location with relative url

本文关键字:window location url 相对      更新时间:2023-09-26

我正在尝试使用window.location重定向到相对的url

这个可变

var redirect = $(this).attr('title');

具有此值

../../000_Movies/_assets/playlist.html

这不会重定向

window.location = redirect;

如果你想重定向到相对页面,你应该使用:

 window.location.href = "../../000_Movies/_assets/playlist.html";

您可以使用:

window.location.href = $(this).attr('title');