从网址

时间:2017-04-28 05:54:56

标签: javascript jquery url

我有一个js-slider,每当更改图片时,它的网址都会被更改。 我想从网址中删除/#/

document.location.href = String( document.location.href ).replace( "#/", "");

这是有效的,但插件jquery.address.js不会查看页面并重定向到403。 如何删除此符号,滑块可以工作。
网站:http://taron-julhakyan.ru
Thankes !!!

1 个答案:

答案 0 :(得分:1)

您可以在javascript中使用regexp

document.location.href = document.location.href.replace(**/(#)[0-9A-Za-z-]+/ig, "#/"**);

这里的/ ig后缀表示正则表达式是 i nsensitive,而 g 表示。

有关更多信息,请参阅here