test1.html 755 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>html嵌入react</title>
  8. <script src="https://cdn.staticfile.org/react/16.4.0/umd/react.development.js"></script>
  9. <script src="https://cdn.staticfile.org/react-dom/16.4.0/umd/react-dom.development.js"></script>
  10. <script src="https://cdn.staticfile.org/babel-standalone/6.26.0/babel.min.js"></script>
  11. </head>
  12. <body>
  13. <h1>html嵌入react</h1>
  14. <div id="example"></div>
  15. <script type="text/babel">
  16. ReactDOM.render(
  17. <h1>Hello, world!</h1>,
  18. document.getElementById('example')
  19. );
  20. </script>
  21. </body>
  22. </html>