1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Ace Editor Example</title>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.12/ace.js" type="text/javascript"></script>
- <style>
- #editor {
- height: 600px; /* 设置编辑器的高度 */
- width: 800px; /* 设置编辑器的宽度 */
- border: 1px solid #ddd; /* 可选边框样式 */
- }
- </style>
- </head>
- old 123655522
- <body>磊2111
- <h1>Ace Editor Example</h1>
- <div id="editor">console.log("Hello, World!");</div> <!-- 初始化内容 -->
- <script>
- // 创建 Ace 编辑器实例
- var editor = ace.edit("editor");
- // 设置语言
- editor.getSession().setMode("ace/mode/javascript");
- // 设置主题
- editor.setTheme("ace/theme/tomorrow");
- editor.setAutoScrollEditorIntoView(true);
- // 其他配置
- editor.setOptions({
- showPrintMargin: true // 不显示打印边距
- });
- </script>
- </body>
- </html>11
|