網頁上的Javascript編輯器和代碼格式化

來源:互聯網
上載者:User

為什麼不用textarea呢?

1 沒有高亮

2 tab鍵無法使用。——按tab鍵會切換到下個控制項

3 沒有代碼格式化。——因為習慣了Eclipse的環境,可以使用ctrl+shift+F來代碼進行格式化。

當然,我還沒強大到自己實現的程度,而且用腳趾頭都能想到肯定有人實現了,就看找不找得著。

經過了艱難的搜尋,終於在SourceForge上找到一個叫EditArea的項目,感覺挺好。http://sourceforge.net/projects/editarea/

它的sample也很清楚

在網頁上用以下方法構造

複製代碼 代碼如下:<script language="Javascript" type="text/javascript" src="../edit_area/edit_area_full.js"></script>
<script language="Javascript" type="text/javascript">
// initialisation
editAreaLoader.init({
id: "example_1" // id of the textarea to transform
,start_highlight: true // if start with highlight
,allow_resize: "both"
,allow_toggle: true
,word_wrap: true
,language: "zh" //國際化
,syntax: "js" //代碼的樣式,支援js ,php,sql,
//以下是格式化的支援
,begin_toolbar: "btn_beautifier,|" //插入工具列
,plugins: "beautifier" //使用控制項
});
</script>

便可以在頁面中出現代碼的編輯框

能夠解決第一個和第二個問題,但是還能解決。

因此我又找啊找,找到這個網站:http://jsbeautifier.org/。這個網站做了一個js的格式化工具,甚至可以格式化經過某個混淆器混淆的js代碼。

於是我根據上面項目中的外掛程式規範,將這兩個東東整合了起來。看上面圖中的按鈕,按下以後,就變成了

看,高亮和格式化都有了。

需要下載的可以從這裡下載(已經包含代碼格式化的外掛程式了):editarea_0_8_2.zip

範例見\exemples\example.html

格式化的外掛程式實現在\edit_area\plugins\beautifier\beautifier.js

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.