返回课程

将笔记置于内部(绝对)

重要性:5

扩展上一个任务 在元素附近显示笔记(绝对):教函数 positionAt(anchor, position, elem)elem 插入 anchor 内。

position 的新值

  • top-outright-outbottom-out – 工作方式与之前相同,它们将 elem 插入 anchor 的上方/右侧/下方。
  • top-inright-inbottom-in – 将 elem 插入 anchor 内:将其粘贴到上/右/下边缘。

例如

// shows the note above blockquote
positionAt(blockquote, "top-out", note);

// shows the note inside blockquote, at the top
positionAt(blockquote, "top-in", note);

结果

作为源代码,请使用任务 在元素附近显示笔记(绝对) 的解决方案。