12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>通用评论 demo</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" type="text/css" media="screen" href="./static/css/comment.0.5.13.css" />
- </head>
- <body>
- <div>
- <h1>在非 React.js 项目中使用通用评论</h1>
- <p>将其渲染到 id 为 `comment` 的节点上</p>
- <div id="comment"></div>
- </div>
- <script type="text/javascript" src="./static/js/comment.0.5.13.js"></script>
- <script type="text/javascript">
- window.renderComment({
- id: 'comment',
- type: 1,
- businessId: 'test'
- })
- </script>
- </body>
- </html>
|