Files
freeCodeCamp/curriculum/challenges/chinese/03-front-end-libraries/jquery/delete-your-jquery-functions.md

1.0 KiB

id, title, challengeType, forumTopicId, required
id title challengeType forumTopicId required
bad87fee1348bd9aeda08726 删除 jQuery 函数 6 17561
link
https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css

--description--

这些动画开始看起来很酷,但是有时可能会让用户分心。

请删除document ready function内的三个 jQuery 函数,但保留document ready function本身。

--hints--

删除document ready function中的三个 jQuery 函数。

assert(code.match(/\{\s*\}\);/g));

保持script标签不变。

assert(code.match(/<script>/g));

保持$(document).ready(function() {script标签的开头不变。

assert(code.match(/\$\(document\)\.ready\(function\(\)\s?\{/g));

保持 'document ready function' 用})闭合。

assert(code.match(/.*\s*\}\);/g));

保持script标签闭合。

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

--solutions--