admin管理员组文章数量:1345007
I have a little issue that I couldn't figure out. I have a slider and I want to change url when I click prev
and next
buttons. Here are my codes below but it doesn't work correctly. Every time I click the button, url appending instead of replacing.
var url = window.location.href;
url = url + "page/" + 1; // this number is dynamic actually
window.location.href = url;
For instance it displays;
stackoverflow/page
and I clicked stackoverflow/page/1
and again stackoverflow/page/1/page/2
But I just want to replace it stackoverflow/page/1
to stackoverflow/page/2
How can I fix it? Thank you for your help.
I have a little issue that I couldn't figure out. I have a slider and I want to change url when I click prev
and next
buttons. Here are my codes below but it doesn't work correctly. Every time I click the button, url appending instead of replacing.
var url = window.location.href;
url = url + "page/" + 1; // this number is dynamic actually
window.location.href = url;
For instance it displays;
stackoverflow./page
and I clicked stackoverflow./page/1
and again stackoverflow./page/1/page/2
But I just want to replace it stackoverflow./page/1
to stackoverflow./page/2
How can I fix it? Thank you for your help.
Share Improve this question edited Jun 22, 2016 at 22:30 Mohammad 21.5k16 gold badges56 silver badges84 bronze badges asked Jun 22, 2016 at 22:29 BforBerryBforBerry 331 gold badge1 silver badge4 bronze badges 03 Answers
Reset to default 4window.location.href returns the entire url...
if you just want to add the "/page/1"
use
var url = window.location.origin;
url = url + "/page/" + 1; // this number is dynamic actually
window.location.href = url;
though window.location.origin is undefined in windows 10
https://developer.mozilla/en-US/docs/Web/API/Window/location
you could just replace the /page/#number#
var url = window.location.href;
url = url .replace(new RegExp("/page/[0-9]"), "/page/2")
window.location.href = url;
All you want is a leading /
in front of page
to make a domain relative path
try
var url = "/page/" + 1;
you can use regex to grab the page section and replace.
something like this:
let num = 2, url= "stackoverflow./page/1";
url = url.replace(/(page\/)([0-9]{1,})/, "$1"+num)
本文标签: javascriptwindowlocationhref appending instead of replacingStack Overflow
版权声明:本文标题:javascript - window.location.href appending instead of replacing - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743804663a2541955.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论