how can i extract text after hash # in the href part from a tag?

前端 未结 8 1641
情话喂你
情话喂你 2021-02-07 02:22

I have following a tags:

Any tab1 Label
tab2 Label
Any tab3 Label<         


        
8条回答
  •  粉色の甜心
    2021-02-07 02:43

    function tellMyName() {
        var str = this.prop("hash").substr(1)
        alert(str);
    }
    
    this.prop("hash") will return the hash value i.e #tab1
    

提交回复
热议问题