上一页 1 2 3 4 5 6 ··· 24 下一页
摘要: https://github.com/valinet/ExplorerPatcher/releases/tag/22621.1555.55.1_a95a688 ExplorerPatcher 下载使用就行 适用于22H2 安装完程序后,鼠标右键点击任务栏,选择属性 修改这个选项为想要的位置,然后点击 阅读全文
posted @ 2023-05-26 11:51 mofy 阅读(128) 评论(0) 推荐(0) 编辑
摘要: z-index实际上是生效的,不过因为background-color默认是透明的,所以看上去像是没有生效 不设置的话,默认颜色差不多,所以z-index看起来似乎没生效 修改背景色或者文本颜色就可以了 background-color默认值是transparent 即透明的 阅读全文
posted @ 2023-05-25 16:43 mofy 阅读(24) 评论(0) 推荐(0) 编辑
摘要: JSON 是一种纯数据格式,只包含属性,没有方法 JSON要求在字符串和属性名称周围使用双引号,单引号无效。 JSON中只有带引号的字符串可以用作属性,而JS中对象属性可以不加引号 JSON.parse()和JSON.stringify()可以用来转换 阅读全文
posted @ 2023-05-24 11:46 mofy 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 一个sql整了半天排错,发现是表名大小写不一样导致的,所以记录下 查了下资料,mysql的表名是根据存储在操作系统上的文件的名称来判断的。 如果操作系统文件名不区分大小写, 例如windows,那么对应的表名就不区大小写。 如果操作系统文件名区分大小写, 例如linux,那么对应的表名就区分大小写。 阅读全文
posted @ 2023-05-17 09:35 mofy 阅读(69) 评论(0) 推荐(0) 编辑
摘要: sql关键字作为保留字使用,不能用于表或者列的名称 sql语句不区分大小写 sql语句中空格会被忽略 select列名之间用逗号分隔 少用*号检索,会降低性能 distinct关键字作用于所有的列 限制结果语法 top 5 关键字 sqlserver和access中使用 fetch first 5 阅读全文
posted @ 2023-05-10 13:16 mofy 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 情况一 arr=['a','b'] sql="select * from student where name in (?)" db.query(sql,arr,function(){ console.log(this.sql) }) // select * from student where n 阅读全文
posted @ 2023-05-04 15:16 mofy 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 16 of CSS’s named colors come from the VGA palette originally, and were then adopted into HTML: aqua, black, blue, fuchsia, gray, green, lime, maroon, 阅读全文
posted @ 2023-03-20 11:54 mofy 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-02-28 10:04 mofy 阅读(8) 评论(0) 推荐(0) 编辑
摘要: chrome webdriver下载 https://chromedriver.storage.googleapis.com/index.html 阅读全文
posted @ 2023-02-28 09:13 mofy 阅读(224) 评论(0) 推荐(0) 编辑
摘要: -q, --quiet Quiet. Produces output suitable for logging, omitting progress indicators. More q's will produce more quiet up to a maximum of two. You ca 阅读全文
posted @ 2023-02-27 16:41 mofy 阅读(98) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 24 下一页