freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/basic-html-and-html5/link-to-external-pages-with...

1.1 KiB
Raw Blame History

id title challengeType videoUrl forumTopicId
bad87fee1348bd9aedf08816 用 a 实现网页间的跳转 0 https://scrimba.com/p/pVMPUv/c8EkncB 18226

--description--

你可以用 aAnchor简写为 a来实现网页间的跳转。

a 需要一个 href 属性指向跳转的目的地,同时,它还应有内容,例如:

<a href="https://freecodecamp.org">链接到 freeCodeCamp</a>

在浏览器中,以上的标签会将文字 "链接到 freeCodeCamp" 展示成一个可点击的超链接。点击该文本就会跳转到 https://freecodecamp.org

--instructions--

创建一个内容文本为 cat photosa 元素,并将其 href 属性值设置为 https://freecatphotoapp.com

--hints--

a 元素的内容文本应为:cat photos

assert(/cat photos/gi.test($('a').text()));

你的 a 元素应链接到 https://freecatphotoapp.com

assert(/http:\/\/(www\.)?freecatphotoapp\.com/gi.test($('a').attr('href')));

确保 a 元素有结束标签。

assert(
  code.match(/<\/a>/g) &&
    code.match(/<\/a>/g).length === code.match(/<a/g).length
);

--solutions--