在www.mysite.com/#i-bc中删除尾部斜杠

当选择更改事件时,我想在我的主页上转到特定的div。 我想要像www.mysite.com#i-bc这样的结果,但是像www.mysite.com/#i-bc这样在它们之间添加了斜杠。 我想使用jquery或其他东西删除该尾部斜杠。 这是我的代码:

脚本:

 $(function(){ $('.toggle-view').on('change', function () { var url = $(this).val(); if (url) { window.location.hash = url; } return false; }); }); 

我的HTML是这样的:

  1 2 3 4  
some content here
some content here
some content here
some content here

提前致谢

试试这个,

 $(function(){ $('.toggle-view').on('change', function () { var url = $(this).val(); if (url) { window.location.hash = url; } return false; }); }); 

window.location.hash专门用于播放散列url。

最好使用window.location.hash 。 它比href