--- id: bad88fee1348bd9aedf08816 title: 用 a 实现网页内部跳转 challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/cyrDRUL' forumTopicId: 301098 --- # --description-- `a` 元素还可以用来实现页面内不同区域的跳转,只需要把`a`元素的`href`值设置为井号`#`加欲跳转区域对应的`id`值即可。`id`是描述网页元素的一个属性,它的值在整个页面中唯一。 下面是用来创建内部 `a` 的例子: ```html Contacts ...

Contacts

``` 当用户点击了`Contacts`链接,页面就会跳转到网页的**Contacts**区域。 # --instructions-- 通过修改`href`属性为`#footer`来更改外部链接为内部链接,同时修改文本`cat photos`为`Jump to Bottom`。 移除 target="\_blank" 属性,它会使得链接在新标签页中打开。 然后添加一个`