设置标签语句,可以在页内任意地方:
〈a name="hebei"〉内容〈/a〉,
跳转语句:
〈a href="#hebei"〉河北〈/a〉
设置了标签,才能跳转。
当使用 target="_blank" 打开新标签页时,新页面的 window.opener 是指向前一个页面,这样就可以控制前一个页面。譬如:当新旧页面在同一个域名下时,在新页面控制台输入 window.opener.alert(1) ,会发现旧页面d出消息 1 。当新旧页面不在同一个域名时,通过 window.opener.location.replace 可以改变旧页面的url。所以还是加上 rel="noreferrer" ,把 opener 对象设置为 null ,以防后患。使用锚点标记来跳转到指定位置,只需要在a标签中加name属性定义一个点,然后使用a中href属性加#号来定义跳转按钮。
举个例子:
<a name="hello">Hello</a>xxxxx
xxxxx
<a href="#hello">点击这里跳转到Hello处</a>
其中xxx是你的其它任意代码
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)