--- title: MathMLElement slug: Web/API/MathMLElement tags: - API - MathML - 元素 - 参考 - 接口 translation_of: Web/API/MathMLElement ---
{{APIRef("MathML")}}

MathMLElement 接口表示任意 MathML 元素。

属性

This interface has no properties, but inherits properties from: {{DOMxRef("DocumentAndElementEventHandlers")}}, {{DOMxRef("Element")}}, {{DOMxRef("ElementCSSInlineStyle")}}, {{DOMxRef("GlobalEventHandlers")}}, {{DOMxRef("HTMLOrForeignElement")}}

方法

This interface has no methods, but inherits methods from: {{DOMxRef("DocumentAndElementEventHandlers")}}, {{DOMxRef("Element")}}, {{DOMxRef("ElementCSSInlineStyle")}}, {{DOMxRef("GlobalEventHandlers")}}, {{DOMxRef("HTMLOrForeignElement")}}

示例

MathML

<math xmlns="http://www.w3.org/1998/Math/MathML">
  <msqrt>
    <mi>x</mi>
  </msqrt>
</math>

JavaScript

document.querySelector('msqrt').constructor.name; // MathMLElement

规范

规范 状态 备注
MathMLElement interface

浏览器兼容性

{{Compat("api.MathMLElement")}}

参见