interface NonElementParentNode {
    getElementById(elementId: string): null | Element;
}

层级 (查看完整内容)

方法

  • Returns the first element within node's descendants whose ID is elementId.

    参数

    • elementId: string

    返回 null | Element