摘要: 常用 选择器 选择器: $("input[name='newsletter']") # 选择所有的name属性等于'newsletter'的input元素 $("li[title='全屏']").click() ####CSS 选择器 基本选择器: #mostImportant {color:red 阅读全文
posted @ 2020-09-13 16:45 该显示昵称已被使用了 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 后期 javascript:(function(){var script=document.createElement('script');script.src='https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js';document.body.ap 阅读全文
posted @ 2020-09-09 11:19 该显示昵称已被使用了 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 后台启动 @echo off if "%1"=="h" goto begin start mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit :begin redis-server.exe 阅读全文
posted @ 2020-09-08 22:26 该显示昵称已被使用了 阅读(148) 评论(0) 推荐(0) 编辑
摘要: [TOC] 阅读全文
posted @ 2020-09-08 18:38 该显示昵称已被使用了 阅读(1431) 评论(0) 推荐(1) 编辑
摘要: https://greasyfork.org/zh-CN AC-baidu Bilibili Evolved (https://github.com/the1812/Bilibili-Evolved) Popup Search Search By Image Endless Google 阅读全文
posted @ 2020-09-08 18:29 该显示昵称已被使用了 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 博客园目录生成和页面优化 https://www.cnblogs.com/zhiqiang_zhang/p/11176628.html #侧边栏广告加入 $('sideCatalogBtn').on('click', function() { document.getElementById("sid 阅读全文
posted @ 2020-09-06 11:05 该显示昵称已被使用了 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 清除Git提交历史 # 放弃本地修改 # 1 git reset --hard origin/master # 放弃所有修改 # 2 git restore <file>..." to discard chang # 3 git checkout -- README.MD # git checkou 阅读全文
posted @ 2020-08-16 20:13 该显示昵称已被使用了 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 快速常用 1、以“河南”开头 /^河南.*/ 2、以“(河南)”开头 /^[\(\(]河南[\)\)].*/ 3、不以“河南”开头 /^(?!河南).*/ 删除不是Bearer开头的行: ^(?!Bearer).*\n 替换成 空 4、不以“(河南)”开头 /^(?![\(\(]河南[\)\)]). 阅读全文
posted @ 2020-08-15 15:44 该显示昵称已被使用了 阅读(2237) 评论(0) 推荐(0) 编辑
摘要: pycharm 添加时间: Live Template 添加一个 Template Group 命名为 Common 添加一个 Live Template 设置如下 Abbreviation: time Description : current time Template Text: \(time 阅读全文
posted @ 2020-08-06 15:20 该显示昵称已被使用了 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 参考: https://github.com/shiyunbo/django-file-upload-download 阅读全文
posted @ 2020-08-05 08:19 该显示昵称已被使用了 阅读(167) 评论(0) 推荐(0) 编辑