国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JavaScript > 正文

codeMirror插件使用講解

2019-11-19 17:55:01
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

codeMirror是一款十分強(qiáng)大的代碼編輯插件,提供了十分豐富的API,最近在項(xiàng)目中用到了這款插件,于是在這里給大家分享下使用方法和心得:

codeMirror調(diào)用非常方便

首先在頁(yè)面中載入插件CSS及JS文件

 <link href="/static/codemirror/lib/codemirror.css" rel="stylesheet" > <script src="/static/codemirror/lib/codemirror.js"></script>

同時(shí)加載你所需要使用的腳本JS及風(fēng)格樣式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頁(yè)面中編寫好代碼:

<!--選擇腳本編碼代碼--><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><!--選擇腳本風(fēng)格代碼--><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>

調(diào)用關(guān)鍵代碼如下:

 var editor = CodeMirror.fromTextArea($("#script_once_code")[0], { //script_once_code為你的textarea的ID號(hào)     lineNumbers: true,//是否顯示行號(hào)     mode:"shell", //默認(rèn)腳本編碼     lineWrapping:true, //是否強(qiáng)制換行 });

JS配置代碼如下:

//選擇界面風(fēng)格JS$('#select').change(function(){   var theme = $('#select').val();     editor.setOption("theme", theme); //editor.setOption()為codeMirror提供的設(shè)置風(fēng)格的方法 });//選擇腳本類型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()設(shè)置腳本類型          editor.setValue(txt1);// editor.setValue()設(shè)置textarea中的值    }    else if(lang=="script_once_type2") {        editor.setOption("mode","perl");        editor.setValue(txt2);    }    else {        editor.setOption("mode","python");        editor.setValue(txt3);    }});

最終界面如下:

如需配置更多參數(shù),可以訪問(wèn)codeMirror插件官網(wǎng):http://codemirror.net/ 查看其配置文檔。

以上就是本文的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,同時(shí)也希望多多支持武林網(wǎng)!

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 福安市| 江城| 丹阳市| 吉林省| 高州市| 循化| 同仁县| 湘乡市| 库尔勒市| 冷水江市| 三穗县| 视频| 瑞安市| 论坛| 普洱| 耒阳市| 乌鲁木齐市| 民县| 琼中| 白朗县| 兴安盟| 儋州市| 梅河口市| 从江县| 文化| 钟祥市| 梨树县| 灌阳县| 中山市| 西吉县| 兴海县| 中方县| 武城县| 灌云县| 福海县| 炎陵县| 云龙县| 蒙城县| 兴文县| 华池县| 尼勒克县|