时间:2021-05-28
codeMirror是一款十分强大的代码编辑插件,提供了十分丰富的API,最近在项目中用到了这款插件,于是在这里给大家分享下使用方法和心得:
codeMirror调用非常方便
首先在页面中载入插件CSS及JS文件
<link href="/static/codemirror/lib/codemirror.css" rel="stylesheet" > <script src="/static/codemirror/lib/codemirror.js"></script>同时加载你所需要使用的脚本JS及风格样式CSS文件,如下举例:
<link href="/static/codemirror/theme/3024-night.css" rel="stylesheet"> <link href="/static/codemirror/theme/erlang-dark.css" rel="stylesheet"> <script src="/static/codemirror/mode/shell/shell.js"></script> <script src="/static/codemirror/mode/perl/perl.js"></script> <script src="/static/codemirror/mode/python/python.js"></script>注意文件的放置位置
下一步在html页面中编写好代码:
<!--选择脚本编码代码--><div class="controls"> <input class="ck-code" type="radio" name="script_once_type" id="script_once_type1" checked> shell <input class="ck-code" type="radio" name="script_once_type" id="script_once_type2"> bat <input class="ck-code" type="radio" name="script_once_type" id="script_once_type3"> python</div><!--选择脚本风格代码--><div class="controls"> <select id='select'> <option>default</option> <option>3024-night</option> <option selected>erlang-dark</option> </select></div><!--textarea--><textarea id="script_once_code"> #!/bin/sh</textarea><textarea id="code2" class="hide"> #!/usr/bin/env python # -*- coding: utf8 -*-</textarea>调用关键代码如下:
var editor = CodeMirror.fromTextArea($("#script_once_code")[0], { //script_once_code为你的textarea的ID号 lineNumbers: true,//是否显示行号 mode:"shell", //默认脚本编码 lineWrapping:true, //是否强制换行 });JS配置代码如下:
//选择界面风格JS$('#select').change(function(){ var theme = $('#select').val(); editor.setOption("theme", theme); //editor.setOption()为codeMirror提供的设置风格的方法 });//选择脚本类型JSvar txt1=$("#script_once_code").val();var txt2='';var txt3=$("#code2").val();$(".ck-code").click(function(){ var txt=editor.getValue(); //editor.getValue()获取textarea中的值 var lang=$(this).prop("id"); if(lang=="script_once_type1") { editor.setOption("mode","shell");//editor.setOption()设置脚本类型 editor.setValue(txt1);// editor.setValue()设置textarea中的值 } else if(lang=="script_once_type2") { editor.setOption("mode","perl"); editor.setValue(txt2); } else { editor.setOption("mode","python"); editor.setValue(txt3); }});最终界面如下:
如需配置更多参数,可以访问codeMirror插件官网:http://codemirror.net/ 查看其配置文档。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
vue实现codemirror代码编辑器中的SQL代码格式化功能1、首先使用npm安装sql-formatter插件npminstall--savesql-fo
在vue项目中使用codemirror插件实现代码编辑器功能(代码高亮显示及自动提示),具体内容如下所示:1、使用npm安装依赖npminstall--save
前提小结:第一次用codemirror,而且是在vue里面使用,看了官方文档,一大串都是英文,翻译后大概了解了这个插件,然后在项目中使用时出现过好几个问题:1.
这是我自己做的一个左边点击对应的标题,右边显示相应代码的一个功能。代码显示这里用的是vue-codemirror插件。第一种用法:1、安装:npminstall
CodeMirror是一个基于JavaScript的代码编辑器,CodeMirror支持大量语言的语法高亮,也包括css,html,js等的高亮显示。此外,Co