摘要: Git知识 一、git常用命令(实用版) git init 初始化仓库 git status 查看git状态 git add . git commit -m '注释' git remote add origin 仓库地址 git pull origin master 拉取 (注意分支名) git p 阅读全文
posted @ 2021-09-09 15:11 MakeGod 阅读(64) 评论(0) 推荐(0) 编辑
摘要: <script> var contentPath = '/'.substr(0, '/'.length - 1); var isIE = !!window.ActiveXObject; var isIE6 = isIE && !window.XMLHttpRequest; if (isIE6) { 阅读全文
posted @ 2021-09-09 14:16 MakeGod 阅读(171) 评论(0) 推荐(0) 编辑
摘要: HTML: <textarea id="FRB_Remark" class="form-control" maxlength="120" oninput="TextareaFontLength(this)" onchange="TextareaLimitLength(this)" onkeydown 阅读全文
posted @ 2021-09-08 14:39 MakeGod 阅读(719) 评论(0) 推荐(0) 编辑
摘要: CREATE procEDURE [dbo].[GetID] -- Add the parameters for the stored procedure here @TableName varchar(64), @TableID varchar(64) output AS BEGIN -- SET 阅读全文
posted @ 2021-08-20 10:16 MakeGod 阅读(106) 评论(0) 推荐(0) 编辑
摘要: CREATE proc [dbo].[Pro_CreateInsertSql] ( @tablename varchar(200), @Condition varchar(5000) ) as begin set nocount on declare @sqlstr varchar(max) dec 阅读全文
posted @ 2021-08-20 10:08 MakeGod 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 把上面的去掉,直接改成画框的写法 阅读全文
posted @ 2021-08-18 09:37 MakeGod 阅读(1859) 评论(0) 推荐(0) 编辑
摘要: List<int>去重 List<string>去重 List<T>去重 1、List<int>去重 1 List<int> ilist = new List<int>() { 1, 2, 3, 4, 5, 5,3,1 }; 2 ilist = ilist.Distinct().ToList(); 阅读全文
posted @ 2021-07-16 10:23 MakeGod 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 1、首先,如果我们想开启vscode的本地服务,首先在他的商店里找到Debugger for Chrome这个插件,点击安装,下图我已经安装好了,所以就没有安装俩字了。 2、接下来就是配置,第三补是配置自己的文件路径,这个是要经常改动的,测试哪个文件就写上那个文件的名字就好,文件前面的${works 阅读全文
posted @ 2021-07-02 13:40 MakeGod 阅读(1960) 评论(0) 推荐(0) 编辑
摘要: Uncaught DOMException: Blocked a frame with origin "null" from acc 解决方案 跨页面操作涉及域的概念(origin),错误的意思是:未捕获的安全错误:阻止了一个域为 null 的 frame 页面访问另一个域为 null 的页面。 代 阅读全文
posted @ 2021-07-02 11:37 MakeGod 阅读(411) 评论(0) 推荐(0) 编辑