Javascript to make the page jump to a specific location

后端 未结 8 537
悲哀的现实
悲哀的现实 2020-12-13 15:09

I there a way in javascript to make the page jump to a specific location on the page, such as


         


        
8条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-13 15:50

    You can set the location.hash property, like this:

    window.location.hash = "jump_to_this_location";
    

    You can give it a try here.

提交回复
热议问题