【发布时间】:2016-08-01 10:12:37
【问题描述】:
这是我的 mathml 代码,但它不工作 html5。我将如何解决这个问题请帮助我
<math xmlns="http://www.w3.org/1998/Math/MathML"><mroot><mn>123</mn><mn>123123</mn></mroot></math>
【问题讨论】:
标签: javascript html mathml
这是我的 mathml 代码,但它不工作 html5。我将如何解决这个问题请帮助我
<math xmlns="http://www.w3.org/1998/Math/MathML"><mroot><mn>123</mn><mn>123123</mn></mroot></math>
【问题讨论】:
标签: javascript html mathml
它适用于 Firefox 47;它在 Chrome 或 IE 中不起作用。这是我的 HTML 页面的整个文本:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML5 with MathML</title>
</head>
<body><p>Here is some MathML...
<math xmlns="http://www.w3.org/1998/Math/MathML"><mroot><mn>123</mn><mn>123123</mn></mroot></math>
</p>
</body>
</html>
【讨论】: