我有一个js-slider
,每当更改图片时,它的网址都会被更改。
我想从网址中删除/#/
。
document.location.href = String( document.location.href ).replace( "#/", "");
这是有效的,但插件jquery.address.js
不会查看页面并重定向到403。
如何删除此符号,滑块可以工作。
网站:http://taron-julhakyan.ru
Thankes !!!
答案 0 :(得分:1)
您可以在javascript中使用regexp
document.location.href = document.location.href.replace(**/(#)[0-9A-Za-z-]+/ig, "#/"**);
这里的/ ig后缀表示正则表达式是 i nsensitive,而 g 表示。
有关更多信息,请参阅here