HTML实现在线代码格式化、美化、加密、解密、压缩、一键转JavaScript功能工具-toolfk程序员工具网
本文要推荐的[ToolFk]是一款程序员经常使用的线上免费测试工具箱,ToolFk 特色是专注于程序员日常的开发工具,不用安装任何软件,只要把内容贴上按一个执行按钮,就能获取到想要的内容结果。ToolFk还支持BarCode条形码在线生成、QueryList采集器、PHP代码在线运行、PHP混淆、加密、解密、Python代码在线运行、JavaScript在线运行、YAML格式化工具、HTTP模拟查询工具、HTML在线工具箱、JavaScript在线工具箱、CSS在线工具箱、JSON在线工具箱、Unixtime时间戳转换、Base64/URL/Native2Ascii转换、CSV转换工具箱、XML在线工具箱、WebSocket在线工具、Markdown 在线工具箱、Htaccess2nginx 转换、进制在线转换、在线加密工具箱、在线伪原创工具、在线APK反编译、在线网页截图工具、在线随机密码生成、在线生成二维码Qrcode、在线Crontab表达式生成、在线短网址生成、在线计算器工具。等20多个日常程序员开发工具,算是一个非常全面的程序员工具箱网站。
網站名稱:ToolFk 網站鏈結:https://www.toolfk.com/ 工具链接:https://www.toolfk.com/tool-format-html
代码教學
本工具[在线HTML美化/加密/解密/转JS]依赖于Codemirror,它的Github地址为:https://github.com/codemirror/CodeMirror,加密、解密使用到http://dean.edwards.name/packer/库。使用代码如下
STEP 1

STEP 2
核心代码如下
$(function(){ varsourceArea=toolfk.create_codeMirror('code'); vartargetArea=toolfk.create_codeMirror('result'); $(".beauty").click(function(){ toolfk.beautify_start({ language:'html', source:sourceArea, target:targetArea }); }); $(".compress").click(function(){ toolfk.pack_js({ source:sourceArea, target:targetArea }); }); $(".encrypt-compress").click(function(){ toolfk.pack_js({ source:sourceArea, target:targetArea, is_base64:true }); }); $(".deciphering-compress").click(function(){ toolfk.dec_pack({ source:sourceArea, target:targetArea, }); }); $(".html2js").click(function(){ toolfk.html2js({ source:sourceArea, target:targetArea, }); }); $(".copy-code").click(function(){ toolfk.code_code({ source:sourceArea, target:targetArea, }); }); }); #具体实现 beautify_start:function(options){ if(toolfk.beautify_default.beautify_in_progress){ return; } varopts=$.extend({},toolfk.beautify_default,options); varsource=opts.source.getValue(); if(source==''){ returnlayer.msg(NOT_EMPTY); } toolfk.beautify_default.beautify_in_progress=true; if(opts.language==='html'){ output=beautifier.html(source,opts); }elseif(opts.language==='css'){ output=beautifier.css(source,opts); }else{ if(opts.detect_packers){ source=toolfk.beautify_unpacker_filter(source); } output=beautifier.js(source,opts); } opts.target.setValue(output); toolfk.report('beautify',output); toolfk.beautify_default.beautify_in_progress=false; }, pack_js:function(options){ if(toolfk.beautify_default.beautify_in_progress){ return; } varopts=$.extend({},toolfk.beautify_default,options); varsource=opts.source.getValue(); if(source==''){ returnlayer.msg(NOT_EMPTY); } toolfk.beautify_default.beautify_in_progress=true; varpacker=newPacker; if(opts.is_base64){ varoutput=packer.pack(source,1,opts.is_shrink); }else{ varoutput=packer.pack(source,0,opts.is_shrink); } opts.target.setValue(output); toolfk.report('compress',output); toolfk.beautify_default.beautify_in_progress=false; }, dec_pack:function(options){ if(toolfk.beautify_default.beautify_in_progress){ return; } varopts=$.extend({},toolfk.beautify_default,options); varsource=opts.source.getValue(); if(source==''){ returnlayer.msg(NOT_EMPTY); } toolfk.beautify_default.beautify_in_progress=true; try{ eval('varvalue=String'+source.slice(4)); opts.target.setValue(value); toolfk.report('deciphering-compress',value); }catch(e){ layer.msg(TEXT_ERROR); } toolfk.beautify_default.beautify_in_progress=false; }, dec_pack_shrink:function(options){ if(toolfk.beautify_default.beautify_in_progress){ return; } varopts=$.extend({},toolfk.beautify_default,options); varsource=opts.source.getValue(); if(source==''){ returnlayer.msg(NOT_EMPTY); } toolfk.beautify_default.beautify_in_progress=true; try{ eval('varvalue=String'+source.slice(4)); varsource=toolfk.beautify_unpacker_filter(value); output=beautifier.js(source,opts); opts.target.setValue(output); toolfk.report('decode-code',output); }catch(e){ layer.msg(TEXT_ERROR); } toolfk.beautify_default.beautify_in_progress=false; }, html2js:function(options){ if(toolfk.beautify_default.beautify_in_progress){ return; } varopts=$.extend({},toolfk.beautify_default,options); varsource=opts.source.getValue(); if(source==''){ returnlayer.msg(NOT_EMPTY); } toolfk.beautify_default.beautify_in_progress=true; varvalue="document.writeln(\""+source.replace(/\\/g,"\\\\").replace(/\\/g,"\\/").replace(/\'/g,"\\\'").replace(/\"/g,"\\\"").split('\n').join("\");\ndocument.writeln(\"")+"\");"; opts.target.setValue(value); toolfk.report('html2js',value); toolfk.beautify_default.beautify_in_progress=false; },
值得一試的三個理由:
- 整合各種程序员开发中经常使用的开发测试工具。
- 简洁美观大气的网站页面
- 支持 在线格式化执行代码、APK在线反编译、在线高强度密码生成、在线网页截图 等二十多種工具服务
- 同时还推荐一下它的姐妹网www.videofk.com视频下载工具箱
本文链接:http://www.hihubs.com/article/365
还没人赞这篇日记