了解如何獲取URL的片段部分的值
我曾經有需要以程式的方式訪問URL的片段部分,也就是#
井號符號後面的部分。
例如,如果URL是index.html#second
,我想要取回second
。
以下是我如何實現的:
const fragment = window.location.hash
了解如何獲取URL的片段部分的值
我曾經有需要以程式的方式訪問URL的片段部分,也就是#
井號符號後面的部分。
例如,如果URL是index.html#second
,我想要取回second
。
以下是我如何實現的:
const fragment = window.location.hash