上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: css <link rel="stylesheet" type="text/css" href="/static/plugins/jquery-treetable/css/jquery.treetable.css"> <script type="text/javascript" src="/stat 阅读全文
posted @ 2021-03-17 17:32 陨落&新生 阅读(156) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <table class="table toggle-arrow-tiny"> <thead> <tr 阅读全文
posted @ 2021-03-05 19:50 陨落&新生 阅读(584) 评论(0) 推荐(0) 编辑
摘要: js 水印 function watermark(valueList, tagId='') { let tab = null; let maxWidth = 0; let maxHeight = 0; if (tagId){ tab = document.getElementById(tagId); 阅读全文
posted @ 2021-01-06 16:32 陨落&新生 阅读(241) 评论(0) 推荐(0) 编辑
摘要: table 固定表头 <!DOCTYPE html> <html lang="zh"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <styl 阅读全文
posted @ 2021-01-05 17:22 陨落&新生 阅读(276) 评论(0) 推荐(0) 编辑
摘要: js获取url let url = window.location.href; console.log(url) // 返回当前页面的路径和文件名,如:/testdemo/test.html let pathname = window.location.pathname; console.log(p 阅读全文
posted @ 2020-12-31 12:00 陨落&新生 阅读(2063) 评论(0) 推荐(0) 编辑
摘要: python使用uuid和guid 只需屏蔽128位int import uuid for i in range(100): print(uuid.uuid4().int & (1<<64)-1) 这些或多或少都是随机的,所以碰撞的可能性很小。 也许uid 1的前64位使用起来更安全。 import 阅读全文
posted @ 2020-12-23 18:11 陨落&新生 阅读(824) 评论(0) 推荐(0) 编辑
摘要: 基本用法 function mHttp() { alert(66) let httpRequest = new XMLHttpRequest();//第一步:创建需要的对象 {#httpRequest.open('POST', 'url', true); //第二步:打开连接/***发送json格式 阅读全文
posted @ 2020-12-23 13:40 陨落&新生 阅读(3296) 评论(0) 推荐(0) 编辑
摘要: 基本操作 #!/usr/bin/env python # encoding: utf-8 """ @author: Irving Shi """ import base64 from pyDes import des, CBC, PAD_PKCS5 Des_Key = "_361Du$Z" Des_ 阅读全文
posted @ 2020-12-17 16:17 陨落&新生 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1、wxPython 安装 1.1、Windows 和 macOS 平台安装: pip install -U wxPython 其中 install 是按照软件包,-U 是将指定软件包升级到最新版本。 1.2、Linux 平台下使用 pip 安装有点麻烦,例如在 Ubuntu 16.04 安装,打开 阅读全文
posted @ 2020-12-16 16:16 陨落&新生 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 项目相关的快捷键 Ctrl + Shift + B = 生成项目 Ctrl + Alt + L = 显示 Solution Explorer(解决方案资源管理器) Shift + Alt+ C = 添加新类 Shift + Alt + A = 添加新项目到项目 编辑相关的键盘快捷键 Ctrl + E 阅读全文
posted @ 2020-12-15 11:44 陨落&新生 阅读(366) 评论(0) 推荐(2) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页