2024.11.22

以下实例添加了一些运算符:

实例

<!DOCTYPE html>
<html>
   <head>
      <meta charset="UTF-8">
      <title>菜鸟教程(runoob.com)</title>
   </head>
       
   <body>
       
      <math xmlns="http://www.w3.org/1998/Math/MathML">
               
         <mrow>                
            <mrow>
                               
               <msup>
                  <mi>x</mi>
                  <mn>2</mn>
               </msup>
                                       
               <mo>+</mo>
                                       
               <mrow>
                  <mn>4</mn>
                  <mo>⁢</mo>
                  <mi>x</mi>
               </mrow>
                                       
               <mo>+</mo>
               <mn>4</mn>
                                       
            </mrow>
                               
            <mo>=</mo>
            <mn>0</mn>
                                 
         </mrow>
      </math>
               
   </body>
</html>


使用第三方库来支持:

实例

<!DOCTYPE html>
<html>
   <head>
      <meta charset="UTF-8">
      <title>菜鸟教程(runoob.com)</title>
      <script type="text/javascript" src="https://static.jyshare.com/assets/js/mathml/mspace.js"></script>
   </head>
       
   <body>
       
      <math xmlns="http://www.w3.org/1998/Math/MathML">
               
         <mrow>                
            <mrow>
                               
               <msup>
                  <mi>x</mi>
                  <mn>2</mn>
               </msup>
                                       
               <mo>+</mo>
                                       
               <mrow>
                  <mn>4</mn>
                  <mi>x</mi>
               </mrow>
                                       
               <mo>+</mo>
               <mn>4</mn>
                                       
            </mrow>
                               
            <mo>=</mo>
            <mn>0</mn>
                                 
         </mrow>
      </math>
               
   </body>
</html>

运行结果图,如下所示:

posted @ 2025-01-07 22:37  y龙  阅读(4)  评论(0)    收藏  举报