博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
autoHotKey 一些脚本积累
阅读量:6300 次
发布时间:2019-06-22

本文共 29813 字,大约阅读时间需要 99 分钟。

新建test.ahk,然后运行即可。

 

 

#InstallKeybdHook#PersistentHotstring("EndChars", "`n")  ; 设置为回车键作为终止符(`t为回车键); 当前版本号V = 0.0.4; 版本获取try {    _V := ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/version", true, "")} catch e {    }; 版本不一致,提示是否要下载最新的if (V != _V) {   MsgBox, 4, 温馨提示, 检测到你本地的DRY并非最新的,是否要前往下载?    IfMsgBox Yes       Run, https://raw.githubusercontent.com/dragon8github/ahk/master/DRY.exe}; ____________________ 全局变量 ___________________________Menu, MyMenu, add; ALT + R 重启脚本!r::    Send, ^s    reloadReturn; 我阿里云的ip,方便我记忆>^i::    SendRaw, 119.23.22.136return>^p::Var = (pxToRem)code(Var)return>^v::    run, http://vuejs.org/    run, http://vuex.vuejs.org    run, http://router.vuejs.org     run, https://github.com/opendigg/awesome-github-vuereturn>^r::    SendRaw, npm run devreturn>^l::    SendRaw, http://localhost:8080return::baidu::    SendRaw, http://www.baidu.comreturn>^e::    run, http://element-cn.eleme.io/#/zh-CN/component/radio    run, https://github.com/ElemeFE/element/blob/dev/packages/    run, https://github.com/ElemeFE/mint-ui    run, http://elemefe.github.io/mint-ui/#/return>^f::    run, http://fontawesome.dashgame.com/return; 获取当前ip,分为1234四个网卡::ip1::    SendInput, % A_IPAddress1return::ip2::    SendInput, % A_IPAddress2return::ip3::    SendInput, % A_IPAddress3return::ip4::    SendInput, % A_IPAddress4return+!c::      SendInput, ^c  ;^a    Sleep, 150     Menu, MyMenu, DeleteAll    MyVar := clipboard    clipboard := ""    RegExMatch(MyVar, "i)(\b\w+\b)(?CCallout)")     Callout(m) {        if (StrLen(m) >= 3 and StrLen(m) < 20) {            clipboard .= m . ","        }        return 1    }    MyVar := clipboard    Sort MyVar, U D,    ; D默认使用逗号作为分隔符,U移除重复项    Sort MyVar, U D,    ColorArray := StrSplit(MyVar, ",")    Loop % ColorArray.MaxIndex() {        this_color := ColorArray[a_index]        Menu, MyMenu, Add, %this_color%, MenuHandler    }    TrayTip, 生成成功, (づ ̄3 ̄)づ╭❤~ 按下 Ctrl + x 可以启动, 20, 17    MenuHandler:        SendRaw, %A_ThisMenuItem%    Return  return!x::     Menu, MyMenu, ShowReturn::git::    SendInput,  rm -rf *.bak && git add . && git commit -m '' && git push -u origin master{LEFT 30}Return::auth::    SendInput, Authorizationreturn; 关闭输入法; 使用示例:SwitchIME(0x08040804); 使用示例:SwitchIME(0x04090409)SwitchIME(dwLayout){    HKL:=DllCall("LoadKeyboardLayout", Str, dwLayout, UInt, 1)    ControlGetFocus,ctl,A    SendMessage,0x50,0,HKL,%ctl%,A}!a::    MouseGetPos, MouseX, MouseY    PixelGetColor, color, %MouseX%, %MouseY%, RGB      Clipboard := "#" . SubStr(color, 3)    TrayTip, my title, current color is `n %Clipboard%, 20, 17return>^b::    RUN, https://www.baidu.com/    RUN, http://www.cnblogs.com/cyleeReturn^g::    RUN, https://www.github.com/    RUN, https://legacy.gitbook.com/Return^+d::    InputBox, OutputVar, title, enter your download url?    if (OutputVar != "") {        text := ajax(OutputVar)        RUN, notepad        WinWaitActive, 无标题 - 记事本, , 2        if ErrorLevel {            MsgBox, WinWait timed out.        }        else {            ; 这里需要聚焦一下            Winactivate            code(text)        }    }return; 快速搜索音乐>^m::    InputBox, OutputVar, title, enter a music name?    if (OutputVar != "")     {        RUN, http://music.163.com/#/search/m/?s=%OutputVar%        RUN, https://y.qq.com/portal/search.html#w=%OutputVar%        RUN, https://www.xiami.com/search?key=%OutputVar%        RUN, http://www.kugou.com/yy/html/search.html#searchType=song&searchKeyWord=%OutputVar%    }return!s::    Clipboard =     Send, ^c    ClipWait, 2    RUN, https://www.zhihu.com/search?type=content&q=%Clipboard%    RUN, https://segmentfault.com/search?q=%Clipboard%    RUN, https://www.google.com/search?q=%Clipboard%    RUN, https://stackoverflow.com/search?q=%Clipboard%    RUN, https://www.baidu.com/s?wd=%Clipboard%return!q::    ; 第一步,将当前剪切板的内容保存起来,然后清空    tmp := Clipboard    Clipboard =    ; 第二步,复制当前选中内容    SendInput, ^c    ClipWait, 2    if (StrLen(Clipboard) >= 10) {        MsgBox, 请不要把此功能当做翻译机        return     }    ; 有道翻译API(暂废弃)    ; Var := ajax("http://119.23.22.136:6634/index.php?text=" . Clipboard . "&type=_")    ; 百度翻译API    Var := ajax("http://119.23.22.136:6634/baidu_transapi.php?text=" . Clipboard . "&type=_")    ; 切换到英文(关闭中文输入法)    SwitchIME(0x08040804)    ; 黏贴结果    SendInput, % Var    ; 这里考虑剪切板要tmp的数据,还是翻译的数据。暂时保存翻译结果吧    Clipboard := VarReturn^!q::    ; 第一步,将当前剪切板的内容保存起来,然后清空    tmp := Clipboard    Clipboard =    ; 第二步,复制当前选中内容    SendInput, ^c    ClipWait, 2    if (StrLen(Clipboard) >= 10) {        MsgBox, 请不要把此功能当做翻译机        return     }    ; 百度翻译API    Var := ajax("http://119.23.22.136:6634/baidu_transapi.php?text=" . Clipboard . "&type=tuofeng")    ; 切换到英文    SwitchIME(0x08040804)    ; 黏贴结果    SendInput, % Var    ; 这里考虑剪切板要tmp的数据,还是翻译的数据。暂时保存翻译结果吧    Clipboard := VarReturn+!q::    ; 第一步,将当前剪切板的内容保存起来,然后清空    tmp := Clipboard    Clipboard =    ; 第二步,复制当前选中内容    SendInput, ^c    ClipWait, 2    ; 百度翻译API    Var := ajax("http://119.23.22.136:6634/baidu_transapi.php?text=" . Clipboard . "&type=_", true)    TrayTip, 翻译成功, 翻译结果为: %Var%, 20, 17    ; 这里考虑剪切板要tmp的数据,还是翻译的数据。暂时保存翻译结果吧    Clipboard := VarReturn!space::    InputBox, OutputVar, title, what's your Q?    if (ErrorLevel == 0)    {        RUN, https://www.zhihu.com/search?type=content&q=%OutputVar%        RUN, https://segmentfault.com/search?q=%OutputVar%        RUN, https://www.google.com/search?q=%OutputVar%        RUN, https://stackoverflow.com/search?q=%OutputVar%        RUN, https://www.baidu.com/s?wd=%OutputVar%    }Return>^j::    RUN, http://youmightnotneedjquery.com/    RUN, https://wyagd001.github.io/zh-cn/docs/Tutorial.htmReturn; 复制黏贴大段文本code(code){    ; MsgBox,  %code%    tmp := Clipboard    Clipboard := code    SendInput, ^V    ; 这里至少需要等待50m    sleep, 50     Clipboard := tmp}; 下载内容ajax(url, q:=false, text:="正在为你下载代码,请保持网络顺畅"){    whr := ComObjCreate("WinHttp.WinHttpRequest.5.1")    whr.Open("GET", url, true)    whr.Send()    if (text != "") {        TrayTip, 请稍后, % text, 20, 17    }       whr.WaitForResponse()            if (q==false) {        if (whr.ResponseText) {            TrayTip, 下载成功, (づ ̄3 ̄)づ╭❤~ , 20, 17        } else {            TrayTip, 无内容返回, ( ̄ε(# ̄)☆╰╮o( ̄皿 ̄///) , 20, 17        }    }        return  whr.ResponseText}; https://tool.lu/imageholder/ 其实完全可以自己实现。算了,网上有的是这种服务::img::    SendInput, ...{left 14}{ShiftDown}{left 7}{ShiftUp}Return; ______________________ css ______________________::bg-cover::    SendRaw, background: url(img/tiger.jpg) 0 / cover;return::@bg::    SendInput,(width: 100px`;height: 100px`;background: url('https://iph.href.lu/100x100') center / 100`% 100`% no-repeat`;display: inline-block`;)return::size::    SendInput,(width: px`;height: px`;)return::fs::    SendInput, font-size: 14px`;{left 3}+{left 2}Return::bg::    SendInput,background: url('https://iph.href.lu/100x100') center center / 130px 130px no-repeat content-box`;Return::bgc::    SendInput, background-color: {#}ffffff`;{left}+{left 6}Return::bgi::    SendInput, background: url('') no-repeat`;{left 13}Return::margin::    SendRaw, margin: 0 auto;return::arrow::Var = (.triangle {    border-left: 50px solid transparent;    border-right: 50px solid transparent;    border-bottom: 50px solid orange;    width: 0;    height: 0;})code(Var)return::arrow-top::Var = (.triangle {    border-left: 50px solid transparent;    border-right: 50px solid transparent;    border-bottom: 50px solid orange;    width: 0;    height: 0;})code(Var)return::arrow-right::Var = (.triangle {    border-top: 50px solid transparent;    border-bottom: 50px solid transparent;    border-left: 50px solid orange;    width: 0;    height: 0;})code(Var)return::arrow-bottom::Var = (.triangle {    border-left: 50px solid transparent;    border-right: 50px solid transparent;    border-top: 50px solid orange;    width: 0;    height: 0;})code(Var)return::arrow-left::Var = (.triangle {    border-top: 50px solid transparent;    border-bottom: 50px solid transparent;    border-right: 50px solid orange;    width: 0;    height: 0;})code(Var)return::wh::    SendInput,(width: px`;height: px`;^!{up}^{left})Return::w::    SendInput, width: px;{left 3}Return::h::    SendInput, height: px;{left 3}Return::ell::    SendInput,(overflow: hidden`;text-overflow: ellipsis`;white-space: nowrap`;)Return::lh::    SendInput, (height: px;line-height: px;^!{up}^{left})Return::text-a::    SendInput, text-align: center`;Return::ta::    SendInput, text-align: center`;Return::tc::    SendInput, text-align: center`;Return::tl::    SendInput, text-align: left`;Return::tr::    SendInput, text-align: right`;Return::t-a::    SendInput, text-align: center`;Return::t-c::    SendInput, text-align: center`;Return::t-r::    SendInput, text-align: right`;Return::t-l::    SendInput, text-align: left`Return::fl::    SendInput, float: left`;Return::fr::    SendInput, float: right`;Return::border-t::    SendInput, border-top: 1px solid {#}ccc`;Return::border-r::    SendInput, border-right: 1px solid {#}ccc`;Return::border-b::    SendInput, border-bottom: 1px solid {#}ccc`;Return::border-l::    SendInput, border-left: 1px solid {#}ccc`;Return::bt::    SendInput, border-top: 1px solid {#}ccc`;Return::br::    SendInput, border-right: 1px solid {#}ccc`;Return::bb::    SendInput, border-bottom: 1px solid {#}ccc`;Return::bl::    SendInput, border-left: 1px solid {#}ccc`;Return::mb::    SendInput, margin-bottom: px`;{left 3}Return::mt::    SendInput, margin-top: px`;{left 3}Return::ml::    SendInput, margin-left: px`;{left 3}Return::mr::    SendInput, margin-right: px`;{left 3}Return::pb::    SendInput, padding-bottom: px`;{left 3}Return::pt::    SendInput, padding-top: px`;{left 3}Return::pl::    SendInput, padding-left: px`;{left 3}Return::pr::    SendInput, padding-right: px`;{left 3}Return::posa::    SendRaw, position: absolute;Return::posr::    SendRaw, position: relative;Return::posf::    SendInput, (position: fixed`;left: 0`;right: 0`;top: 0`;z-index: 199307100337`;)Return::box::    SendInput,box-sizing: border-box`;Return::flexw::Var = (display: flex;flex-wrap: wrap;)code(Var)return::flexc::    SendInput,(display: flex`;justify-content: center`;)Return::flexa::    SendInput, (display: flex`;justify-content: space-around`;)Return::flexs::    SendInput, (display: flex`;justify-content: flex-start`;)Return::flexe::    SendInput, (display: flex`;justify-content: flex-end`;)Return::flexcc::    SendInput, (display: flex`;justify-content: center`;align-items: center`;)Return::flexac::    SendInput, (display: flex`;justify-content: space-around`;align-items: center`;)Return::flexb::Var = (display: flex;justify-content: space-between;align-items: center;)code(Var)return::flexbs::Var = (display: flex;justify-content: space-between;align-items: flex-start;)code(Var)return::flexbc::Var = (display: flex;justify-content: space-between;align-items: center;)code(Var)return::flexbe::Var = (display: flex;justify-content: space-between;align-items: flex-end;)code(Var)return::flexss::    SendInput, (display: flex`;justify-content: flex-start`;align-items: flex-start`;)Return::flexsc::    SendInput, (display: flex`;justify-content: flex-start`;align-items: center`;)Return::flexee::    SendInput, (display: flex`;justify-content: flex-end`;align-items: flex-end`;)Return::flexec::    SendInput, (display: flex`;justify-content: flex-end`;align-items: center`;)Return::`:before::    SendInput,(::before {
{}{}}{left}content: " "`;position:absolute`;)Return::`:after:: SendInput,(::after {
{}{}}{left}content: " "`;position:absolute`;)Return::center:: SendInput, (position: absolute`;left: 50`%`;top: 50`%`;transform: translate(-50`%, -50`%)`;)Return::xcenter:: SendInput, (position: absolute`;left: 50`%`;transform: translateX(-50`%)`;)Return::ycenter:: SendInput, (position: absolute`;top: 50`%`;transform: translateY(-50`%)`;)Return::@media::Var = (/* 移动设备断点,视图宽度 <= 768px */@media (max-width: 768px) {}/* 移动设备断点,视图宽度 >= 769px */@media (min-width: 769px and max-width: 1024) {}/* 移动设备断点,视图宽度 >= 1024px */@media (min-width: 1024px and max-width: 1216px) {}/* 移动设备断点,视图宽度 >= 1216 */@media (min-width: 1216px) {})code(Var)Return::style::Var = ()code(Var)return::`!imp:: SendRaw, !importantreturn::tran:: SendRaw, transparentreturn::trans:: SendInput, transitionreturn::transf:: SendInput, transformreturn::link-media:: SendInput,
Return::border-1px::Var = (/* 1 物理像素线(也就是普通屏幕下 1px ,高清屏幕下 0.5px 的情况)采用 transform 属性 scale 实现 */.mod_grid { position: relative; &::after { /* 实现1物理像素的下边框线 */ content: ''; position: absolute; z-index: 1; pointer-events: none; background-color: #ddd; height: 1px; left: 0; right: 0; top: 0; @media only screen and (-webkit-min-device-pixel-ratio: 2) { -webkit-transform: scaleY(0.5); -webkit-transform-origin: 50`% 0`%; } }})code(Var)Return::box-shadow:: SendRaw, box-shadow: 0 2px 12px 0 rgba(212, 212, 212, 0.1);return::box-shadow2::Var = (box-shadow: 0 0 0 1px hsla(0, 0`%, 100`%, .3) inset, 0 .5em 1em rgba(0, 0, 0, 0.6);)code(Var)return::chrome-yellow::Var = (input:-webkit-autofill { -webkit-box-shadow: 0 0 0px 1000px white inset !important;})code(Var)return::forof::Var = (for (const a of gen) { console.log(a);})code(Var)return; ______________________ JavaScript ______________________::node-http::Var = (var http = require('http');var server = http.createServer(function (req, rep) { rep.writeHead(200, {"Content-Type": "text/plain"}); rep.end("Hello World!!");})server.listen(3000, function (err) { console.log('start');});)code(Var)Return>^d:: SendInput, debugger{;}Return>^c:: SendInput, console.log(arguments)`;{left 2}Return::con:: SendInput, console.log()`;{left 2}Return::log:: SendInput, console.log()`;{left 2}Return::console:: SendInput, console.log(arguments)`;{left 2}Return::ret:: SendInput, returnReturn ::pro:: SendInput, prototypereturn::args:: SendInput, argumentsReturn::json.p:: SendInput, JSON.parse(){left}Return::json.s:: SendInput, JSON.stringify(){left}Return::/json:: SendRaw, application/json;charset=utf-8Return::json/:: SendRaw, application/json;charset=utf-8Return::/form:: SendRaw, application/x-www-form-urlencoded;charset=utf-8Return::_::Var = (_ => {})code(Var)SendInput, {left}{enter}Return::=>::Var = (=> {})code(Var)SendInput, {left}{enter}Return::func::Var = (function () {})code(Var)SendInput, {left}{enter}Return::f::Var = (function () {})code(Var)SendInput, {left}{enter}Return::()()::Var = ((function(){ }());)code(Var)SendInput, {up}{tab}Return::$click::Var = ($(".object").click(function () { });)code(Var)SendInput, {up}{tab}Return::$change::Var = ($(".object").change(function () {});)code(Var)SendInput, {up}{tab}Return::`:?:: SendInput, foo === bar ? true `: false`;Return::sett::Var = (setTimeout(function () { }, 1000);)code(Var)SendInput, {up}{tab}Return::setti::Var = (setInterval(function () { }, 1000);)code(Var)SendInput, {up}{tab}Return::ctimer::Var = (var timer = setTimeout(function () { clearTimeout(timer);}, 1000);)code(Var)Return::ctimeri::Var = (var timer = setInterval(function () { clearInterval(timer);}, 1000);)code(Var)Return::$each::Var = ($.each($('.object'), function (i, e) { console.log(i, e);});)code(Var)Return::.each::Var = (.each(function (i, e) { console.log(i, e);});)code(Var)Return::foreach::Var = ([1,2,3,4].forEach(function (e, i) { console.log(i, e);});)code(Var)Return::dg:: SendInput, document.getElementById('')`;{left 3}Return::ds:: SendInput, document.querySelectorAll('')`;{left 3}Return::.then:: SendInput, .then(_ => {
{}{}}).catch(err => {
{}{}})`;{left 3}{enter 2}{UP 2}{Home}{right 12}{enter 2}{up}{tab}Return::throw:: SendInput, throw new Error(e.message){left}^+{left}^+{left}Return>!f::Var = (for (var i = Things.length - 1; i >= 0; i--) { Things[i]})code(Var)Return!f::Var = (for (var i = 0; i < Things.length; i) { Things[i]})code(Var)Return::forin:: SendInput, for (var property in source) {
{}{}}{left}{enter}console.log(source[property]);Return::switch:: SendInput,(switch (data) {
{}{}}{left}{enter 2}{up}{tab}case 0`: break`;case 1`: break`;default`: )return::date::Var = (var date = new date();var year = date.getFullYear();var month = date.getMonth() + 1;var day = date.getate();var hour = date.getHours();var minutes = date.getMinutes();var seconds= date.getSeconds();console.log(year + "/" + month + "/" + day + "/ " + hour + ":" + minutes + ":" + seconds);console.log(year + "年" + month + "月" + day + "日 " + hour + "时" + minutes + "分" + seconds + "秒");)code(Var)return::cdate:: SendInput, var mydate = new Date(time.replace(/\-/g, "/"))`;Return::date.y:: SendInput, new Date().getFullYear()`;Return::datey:: SendInput, new Date().getFullYear()`;Return::date.year:: SendInput, new Date().getFullYear()`;Return::date.m:: SendInput, new Date().getMonth() {+} 1`;Return::date.month:: SendInput, new Date().getMonth() {+} 1`;Return::datem:: SendInput, new Date().getMonth() {+} 1`;Return::date.d:: SendInput, new Date().getDate()`;Return::dated:: SendInput, new Date().getDate()`;Return::date.day:: SendInput, new Date().getDate()`;Return::date.h:: SendInput, new Date().getHours()`;Return::dateh:: SendInput, new Date().getHours()`;Return::date.hour:: SendInput, new Date().getHours()`;Return::date.mm:: SendInput, new Date().getMinutes()`;Return::datemm:: SendInput, new Date().getMinutes()`;Return::date.s:: SendInput, new Date().getSeconds()`;Return::date.ss:: SendInput, new Date().getSeconds()`;Return::$create:: SendInput, (var wrap = document.createElement("div");var first = document.body.firstChild;var wraphtml = document.body.insertBefore(wrap,first);)Return::random:: SendInput, parseInt(Math.random() * 10 {+} 1); // 获取 1 - 10 到随机数Return::rand:: SendInput, parseInt(Math.random() * 10 {+} 1); // 获取 1 - 10 到随机数Return::repeat:: SendRaw, Array.prototype.join.call({length: i + 1}, '你确定?')Return!/::Var = (/** * say something ... */)code(Var)Return+!/::Var = (/** * say something ... * @param {*} 参数 说明 */)code(Var)return::getuuid::Var = (function getUUID () { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => { return (c === 'x' ? (Math.random() * 16 | 0) : ('r&0x3' | '0x8')).toString(16) })})code(Var)return; ____________ CDN _______________::cdn-font:: SendRaw,
return::cdn-axios:: SendRaw, Return::cdn-swiper::Var = (
)code(Var)Return::cdn-jquery3::Var = ()code(Var)Return::cdn-jquery1.9::Var = ()code(Var)Return::cdn-jquery::Var = ()code(Var)Return::cdn-jq::Var = ()code(Var)Return::cdn-vue::Var = ()code(Var)Return::cdn-bs::Var = (
)code(Var)Return::cdn-bootstrap::Var = (
)code(Var)Return::cdn-reset::Var = (
)code(Var)return::cdn-normalize::Var = (
)code(Var)return;_______________ Vue ______________________::mapgetters::Var = (// https://vuex.vuejs.org/en/getters.htmlimport { mapGetters } from 'vuex'computed: { ...mapGetters([ 'menuList' ]), ...mapGetters({ menuList: 'menuList' })},)return::mapmutations::Var = (// https://vuex.vuejs.org/en/getters.htmlimport { mapMutations } from 'vuex'methods: { ...mapMutations([ 'SET_MENU', 'SET_USERINFO' ]), ...mapMutations({ SET_MENU: 'SET_MENU', SET_USERINFO: 'SET_USERINFO' }),},)return::dispatch:: SendInput, this.$store.dispatch('').then(_ => {
{} {}}){left 2}{enter 2}{up}{tab} // ...Return::v-for:: SendInput, v-for='(item, index) in items' :key='index'Return; ______________________ HTML _____________________::div::Var = (
)code(Var)Send, {left 6}return::html`:5::Var = (
Document)code(Var)Return::meta:: SendInput,
Return::nocache::(
)Return::art:: SendRaw,
return::table-cell::Var = (/** * 父元素,table-cell兼容到IE8 * * 缺点1:margin属性会失效(但子元素不影响),因为margin不适用于表格布局。 * 解决1:再外层多套一个div容器,然后对这个容器display:block;margin: 0 auto;即可 * * 缺点2:使用display: table-cell;的元素设置宽高百分比的时候将不起作用,譬如想设置为外层的100`%宽度 * 解决2:如果只是想随着外层的100`%,还是有方法的,那就是设置一个很大的值,如3000px * * 缺点3:当元素设置为position: absolute;的时候会失效。 * 解决3:参考解决1,在外层套一个容器,将absolute作用于该容器即可。 * 但这样一来,又会导致缺点2的问题,也就是宽高百分比失效。所以要看场景使用。 * 实在不行可以使用: position: relative; top: 50`%; transform: translateY(-50`%); 加上-webkit-前缀后,兼容性可以达到IE9。 也可以采用margin-top: 负元素的高度。但需要知道高度,无法根据内容长度自适应。 */.my-container { display: table-cell; vertical-align: middle;})code(Var)return::middle:: SendRaw, vertical-align: middle;return::fig::Var = (
...
explanatory caption
)code(Var)return::fig-span::Var = (
...
explanatory caption
)code(Var)return; _____________________ php _______________________::header::Var = (header('Access-Control-Allow-Origin:*');header('Access-Control-Allow-Headers:Content-Type,Content-Length, Authorization,Origin,Accept,X-Requested-With');header('Access-Control-Allow-Methods:GET,POST);header('Access-Control-Allow-Credentials:true');header("Content-type: text/html; charset=utf-8");)code(Var)Return::header-utf8:: SendRaw, header("Content-type: text/html; charset=utf-8");Return; _____________________ regExp _______________________::is-cn::Var = (if (!/^[\u4e00-\u9fa5]+$/.test('李钊鸿')) { throw new Error('请输入中文汉字')})code(Var)return::is-phone::Var = (/^([0-9]{3,4}-)?[0-9]{7,8}$/.test(s))code(Var)return ::is-pwd:: SendRaw, /[A-Za-z].*[0-9]|[0-9].*[A-Za-z]/.test('123456a@') ; /* 必须同时包含数字和字母,支持非法符号 */Return ::is-user:: SendRaw, /^[a-zA-Z0-9-_]*$/.test(''); /* 由6-16位数字、 字母、 '_'、 '-'组成,不含特殊字符*/Return ::is-id::Var = (if (!/(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/.test('445222199307100337')){ throw new Error('非法身份证')})code(Var)return::is-email:: SendRaw, /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(s)Return; _______________ snippets ______________ >^a::Var = ($.ajax({ url: "http://localhost:3000", type: "post", data: JSON.stringify({ test: 123 }), headers: { token: '123' }, dataType: 'json', contentType: 'application/json;charset=utf-8', success: function (data) { console.log(data); }}))code(Var)Return::ajax::Var = ($.ajax({ url: "http://localhost:8089/index.php", type: "post", data: {}, headers: { token: '123' }, dataType: 'json', contentType: 'application/json;charset=utf-8', success: function (data) { console.log(data); }, error: function(e, m){ console.log('数据接口请求异常', e, m); }}))code(Var)Return::walert:: SendRaw, window.alert('123');return; _______________________________ 本地代码库 _______________________________ >!v::Var = (
r )code(Var)return::extend::Var = (// 拷贝集成var extend = function (destination, source) { for (var property in source) destination[prototype] = source[prototype] return destination})code(Var)Return ::gettop::Var = (// 获取距离顶部的相对距离function getElementTop(element){ try {     var actualTop = element.offsetTop;     var current = element.offsetParent;     while (current !== null){       actualTop += current.offsetTop;       current = current.offsetParent;     }     return actualTop; } catch (e) {}})code(Var)Return::pad::Var = (// 补全function pad (target, n) { var zero = new Array(n).join('0'); var str = zero + target; var result = str.substr(-n); return result;})code(Var)Return::goTop::Var = (var timer = null;var goTop = function() { cancelAnimationFrame(timer); timer = requestAnimationFrame(function fn() { var oTop = document.body.scrollTop || document.documentElement.scrollTop; if (oTop > 0) { document.body.scrollTop = document.documentElement.scrollTop = oTop - 500; timer = requestAnimationFrame(fn); } else { cancelAnimationFrame(timer); } });})code(Var)Return::uniqueArray::Var = (/** * 只用 Array * 如果是 es6 推荐: return Array.from(new Set(arr)); */function uniqueArray(arr) { var retArray = []; for (var i = 0; i < arr.length; i) { retArray.push(arr[i]); } Return retArray;})code(Var)::env:: SendRaw, process.env.NODE_ENV === 'production|development'return; _______________________________ 云代码库 _______________________________ ::vue_template:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/vue_template.vue"))Return::aop:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/AOP.js"))Return::__EVENT__:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/__EVENT__.js"))Return::normalize:: code(ajax("https://raw.githubusercontent.com/necolas/normalize.css/master/normalize.css"))Return::fuck-rem:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/rem.scss"))Return::hover-nav:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/hover-nav.html"))Return::myhtml:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/myhtml.html"))return::myexpress:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/myexpress1.js"))return::myexpress2:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/myexpress1.js"))return::express-proxy:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/express-proxy.js"))return::proxy:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/express-proxy.js"))return::node-nginx:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/express-proxy.js"))return::node-nginx2:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/node-nginx.js"))return::glass:: code(ajax("https://raw.githubusercontent.com/dragon8github/ahk/master/snippets/glass.html"))return; ___________________ hongte _______________________::ht.loading::Var = (
const loading = this.$loading({lock: true, text: 'Loading', spinner: 'el-icon-loading', background: 'rgba(0, 0, 0, 0.7)'});setTimeout(() => { loading.close();}, 2000);)code(Var)return::ht.post::Var = (this.$http.post('/uaa/auth/login', { "userName": "admin-salary", "password": "123456"}).then(result => { console.log(result);}).catch(err => { this.$message.error('接口异常:' + err.message);}))code(Var)return::ht.get::Var = (this.$http.get('/uc/auth/loadMenu').then(result => { console.log(result);}).catch(err => { this.$message.error('接口异常:' + err.message);}))code(Var)return::ht.card::Var = (
卡片名称
操作按钮
{
{
'列表内容 ' + o }}
)code(Var)return::ht.input::Var = (
姓名:
)code(Var)return::ht.form::Var = (
-
立即创建
取消
form: { name: '', region: '', date1: '', date2: '', delivery: false, type: [], resource: '', desc: ''})code(Var)return::ht.msg:: SendRaw, this.$message.error('接口异常:' + err.message);return; _______________________________ second_keyboard _______________________________ ~^F12::; 获取指定位置的数值FileRead, key, C:\Users\lizhaohong\Desktop\keypressed.txt; b 百度if (key == 66) { RUN, http://www.cnblogs.com/cylee}; 1 代表输入贷后系统的账号密码if (key == 97) { ; 关闭输入法 SwitchIME(0x08040804) ; 输入账号 SendInput, admin-alms ; 切换到密码框 SendInput, {tab} Sleep 200 ; 输入密码 SendRaw, hongte123 Sleep 200 SendInput, {enter}}; 1 代表输入信贷系统的账号密码if (key == 98) { ; 关闭输入法 SwitchIME(0x08040804) ; 输入账号 SendInput, admin ; 切换到密码框 SendInput, {tab} Sleep 200 ; 输入密码 SendRaw, hongte@2018 Sleep 200 SendInput, {enter}}; 1 代表输入薪资系统的账号密码if (key == 99) { ; 关闭输入法 SwitchIME(0x08040804) ; 输入账号 SendInput, HX-04397 ; 切换到密码框 SendInput, {tab} Sleep 200 ; 输入密码 SendRaw, 123456 Sleep 200 SendInput, {enter}}; 【d】跳转到贷后系统if (key == 68) { RUN, http://172.16.200.112:30601/index}; 【p】发送post代码if (key == 80) {Var = (this.$http.post('/uaa/auth/login', { "userName": "admin-salary", "password": "123456"}).then(result => { console.log(result);}).catch(err => { this.$message.error('接口异常:' + err.message);}))code(Var)}; 【p】发送post代码if (key == 71) {Var = (this.$http.get('/uc/auth/loadMenu').then(result => { console.log(result);}).catch(err => { this.$message.error('接口异常:' + err.message);}))code(Var)}if (key == 76) { run, http://localhost:8080}if (key == 86) { run, http://vuejs.org/ run, http://vuex.vuejs.org run, http://router.vuejs.org run, https://github.com/opendigg/awesome-github-vue}if (key == 69) { run, http://element-cn.eleme.io/#/zh-CN/component/radio run, https://github.com/ElemeFE/element/blob/dev/packages/ run, https://github.com/ElemeFE/mint-ui run, http://elemefe.github.io/mint-ui/#/}if (key == 88) { run, http://172.16.200.106:8083/}if (key == 83) { run, http://172.16.200.121:31501/index}

 

你可能感兴趣的文章
微信小程序+java后端整合笔记
查看>>
Java应用程序工程模板
查看>>
Web上传文件的原理及实现
查看>>
DPM2007安装配置简要指南
查看>>
如何使用常用的6种方式对数据进行转换(二)
查看>>
1463: C语言实验题――相加和最大值
查看>>
坚持之随想
查看>>
$.ajax()方法详解
查看>>
python模块介绍- SocketServer 网络服务框架
查看>>
【CSS进阶】box-shadow 与 filter:drop-shadow 详解及奇技淫巧
查看>>
IE无法显示.shtml格式网页
查看>>
Django文件上传 -- 适用于单一小文件上传
查看>>
Android 发送多个不同的快捷方式(shortcut)到桌面并向其启动的Activity传参
查看>>
还在用PCA降维?快学学大牛最爱的t-SNE算法吧(附Python/R代码)
查看>>
Android Fragments 详细使用
查看>>
验证码识别(python)
查看>>
Ruby学习笔记-正则表达式
查看>>
.NET Reflection 反射 类属性间的拷贝
查看>>
设计一个只能在堆上或栈上实例化的类
查看>>
(转载)利用webkit抓取动态网页和链接
查看>>