猿问

有没有办法在html javascript中重写裸域url

尝试将https://example.com重写为 / (如https://example.com/)或不带 / 结尾,以https://example.com/hello

html中可以使用javascript吗?不想重写任何其他比赛


青春有我
浏览 74回答 1
1回答

慕桂英3389331

您可以使用 window.history.pushState 函数。这是一个例子const state = { 'page_id': 1, 'user_id': 5 }const title = 'NEW TITLE'const url = 'https://example.com/hello'window.history.pushState(state, title, url)
随时随地看视频慕课网APP

相关分类

Html5
我要回答