1.0 KiB
1.0 KiB
id, title, challengeType, forumTopicId, required
id | title | challengeType | forumTopicId | required | |||
---|---|---|---|---|---|---|---|
bad87fee1348bd9aeda08726 | 删除 jQuery 函数 | 6 | 17561 |
|
--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
);