板凳 发表于 2018-7-25 16:58:29

请教怎么访问a.html#xx_xx跳转到a.html

遇到这个问题:www.1.net/a.html#payments_alipay 跳转关系与规则不符

想不到好的解决方法,怎么实现取消.html后面的变量
访问1.net/a.html#xx_xx然后定向到1.net/a.html

板凳 发表于 2018-7-25 17:09:19

怎么解决呢?

mxy123h 发表于 2018-7-25 17:10:46

js split

waini1110 发表于 2018-7-25 17:11:36

mxy123h 发表于 2018-7-25 17:12:28

window.location.href.split('#') 大概这样?

板凳 发表于 2018-7-25 17:18:09

mxy123h 发表于 2018-7-25 17:12
window.location.href.split('#') 大概这样?

大佬有完整版吗,

mxy123h 发表于 2018-7-27 14:10:51

板凳 发表于 2018-7-25 17:18
大佬有完整版吗,

<script language="javascript">
if(window.location.href.split('#').length>1){
window.location.href=window.location.href.split('#')
}
</script>

formax 发表于 2018-8-11 01:22:43

服务器的重定向不行吗? 要在静态页面做?
页: [1]
查看完整版本: 请教怎么访问a.html#xx_xx跳转到a.html