- 軟(ruǎn)件大小(xiǎo):339KB
- 軟件語言:中文
- 軟件類型:國產軟件
- 軟件類(lèi)別:免費軟件 / 編程工具
- 更新時間(jiān):2017-08-17 16:12
- 運行環境(jìng):WinAll, WinXP, Win7, Win8, Win10
- 軟件等級(jí):
- 軟件(jiàn)廠商(shāng):
- 官方網站:暫無
0KB/中文/10.0
0KB/中文/10.0
55KB/中文(wén)/10.0
2.57M/中文/10.0
3.51M/中文/10.0
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ě)定製。
1.CodeMirror為各種編程語言實現(xiàn)關鍵字、函數、變量等代碼高亮顯示(shì),豐富的API和可擴展功能以及(jí)多個主題(tí)樣式。
2.支持語言有C、C++、C#、Java、Perl、HTML、CSS、php、javascript、Python、Lua、Go、Groovy、Ruby等。
3.以及diff、LaTeX、SQL、wiki、Markdown等文件格式。
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 });
請描(miáo)述您所遇到(dào)的錯誤(wù),我們將盡快予以修正,謝(xiè)謝!
*必(bì)填項,請輸入(rù)內(nèi)容