codemirror插(chā)件下載 最新軟件|熱門排行|軟(ruǎn)件分(fèn)類|軟件專題|廠商大全(quán)

您的位置: 首頁編程(chéng)開發編程工具 → codemirror中文api v2.23 官方(fāng)最新版

codemirror中(zhōng)文api

v2.23 官方(fāng)最新(xīn)版 codemirror中(zhōng)文api 網(wǎng)友評分:8

同(tóng)類相關軟件

軟件介紹

軟(ruǎn)件(jiàn)標(biāo)簽: codemirror 編程插件

codemirror是(shì)一款(kuǎn)非常(cháng)好用的代碼編程(chéng)插件(jiàn),可以在(zài)線進行代(dài)碼(mǎ)的編輯,支持語言廣泛,可以很方便的在(zài)頁麵中嵌入(rù)所需要的代碼編輯區,非常(cháng)的好用,歡迎有需(xū)要的碰喲到(dào)綠色資源網下載使用!

官方介紹

codeMirror是一款十分(fèn)強(qiáng)大的代碼編輯插(chā)件,提供了十分豐富的API。CodeMirror是(shì)一個(gè)運行在瀏覽(lǎn)器中的代碼編輯器,支持100多種語(yǔ)言,高度(dù)可(kě)定製。

codemirror插件特色(sè)

1.CodeMirror為各種編程語言實現(xiàn)關鍵字、函數、變量等代碼高亮顯示(shì),豐富的API和可擴展功能以及(jí)多個主題(tí)樣式。

2.支持語言有C、C++、C#、Java、Perl、HTML、CSS、phpjavascript、Python、Lua、Go、Groovy、Ruby等。

3.以及diff、LaTeX、SQL、wiki、Markdown等文件格式。

odeMirror調用方法

href="/static/codemirror/lib/codemirror.css" rel="stylesheet" >

<script src="/static/codemirror/lib/codemirror.js"></script>

同時加載你所需要使用的腳本(běn)JS及風格(gé)樣式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>

注意文件(jiàn)的放置位置

下一步在html頁麵中編寫(xiě)好(hǎo)代碼:

 1 <!--選擇腳本編碼代(dài)碼--> 2 <div> 3     <input type="radio" name="script_once_type" id="script_once_type1" checked> shell 4      <input type="radio" name="script_once_type" id="script_once_type2"> bat 5      <input type="radio" name="script_once_type" id="script_once_type3"> python 6 </div> 7  8 <!--選擇腳本(běn)風格代碼--> 9 <div>10     <select id='select'>11          <option>default</option>12          <option>3024-night</option>13          <option selected>erlang-dark</option>14     </select>15 </div>16 17 <!--textarea-->18 <textarea id="script_once_code">19     #!/bin/sh20 </textarea>21 <textarea id="code2">22     #!/usr/bin/env python23     # -*- coding: utf8 -*-24 </textarea>

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

1 var editor = CodeMirror.fromTextArea($("#script_once_code")[0], { //script_once_code為你的(de)textarea的ID號2           lineNumbers: true,//是否顯(xiǎn)示(shì)行(háng)號(hào)3           mode:"shell", //默認腳本編(biān)碼4          lineWrapping:true, //是否強製(zhì)換行5 });

JS配置代碼如下:

 1 //選擇界麵風格JS 2 $('#select').change(function(){ 3      var theme = $('#select').val(); 4          editor.setOption("theme", theme); //editor.setOption()為codeMirror提供的設置風格的方(fāng)法 5  });  6  7 //選擇腳本類型JS 8 var txt1=$("#script_once_code").val(); 9 var txt2='';10 var txt3=$("#code2").val();11 $(".ck-code").click(function(){12        var txt=editor.getValue(); //editor.getValue()獲取(qǔ)textarea中的值13        var lang=$(this).PRop("id");14        if(lang=="script_once_type1") {15                editor.setOption("mode","shell");//editor.setOption()設置腳本類型16                    editor.setValue(txt1);// editor.setValue()設置textarea中的值17        }18        else if(lang=="script_once_type2") {19                editor.setOption("mode","perl");20                editor.setValue(txt2);21        }22        else {23                editor.setOption("mode","python");24                editor.setValue(txt3);25     26        }27 });

軟(ruǎn)件截圖

下載地址 電腦(nǎo)版

點擊報錯 軟件(jiàn)無法下載或(huò)下載後無法使用,請點擊報錯,謝謝!

用(yòng)戶評論(lùn)

熱門評論

最新(xīn)評論

發(fā)表(biǎo)評論 查看所有(yǒu)評論(0)

昵稱:
請不要評(píng)論無意義或(huò)髒話(huà),我們所有評論會有人工(gōng)審核.
字數: 0/500 (您的評論需要經過審(shěn)核才能顯示)