摘要: $(document).ready(function () { 'use strict'; // // // Search Box // // $('#search').on('click', function (e) { e.preventDefault(); $('.search-box').f 阅读全文
posted @ 2024-07-20 19:25 佬zz 阅读(45) 评论(0) 推荐(0)
摘要: <!DOCTYPE html><html><head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>login</title> <meta name="description" 阅读全文
posted @ 2024-07-20 19:24 佬zz 阅读(301) 评论(0) 推荐(0)
摘要: /* Bootstrap 4 Admin Templatehttps://bootstrapious.com/p/admin-template *//** * GENERAL STYLES* */body { overflow-x: hidden;}a,i,span { display: inlin 阅读全文
posted @ 2024-07-20 19:09 佬zz 阅读(15) 评论(0) 推荐(0)
摘要: 插件 transaction 快捷键文档 idea快捷键 快捷键文档 阅读全文
posted @ 2023-09-15 10:17 佬zz 阅读(9) 评论(0) 推荐(0)
摘要: 数据库 索引 what? 主键索引,主键自动为索引 唯一索引(unique) 普通索引(index) //不是主键和uniqu的字段也想缩减查询速度 全文索引(fulltext) ?????????? 一种存储字段的形式(用各种数据结构实现各种索引方式(二叉树) how? -- 创建索引 creat 阅读全文
posted @ 2023-09-15 10:16 佬zz 阅读(7) 评论(0) 推荐(0)
摘要: JavaWeb B/S架构说明 ![韩顺平 Java工程师课程-JavaWeb](img/韩顺平 Java工程师课程-JavaWeb.jpg) html 字符实体 < : &lt 大于号: &gt 空格 &nbsp 可以去查常用字符一览表 超链接标签 <!--target:重新开一个页面--> <a 阅读全文
posted @ 2023-09-15 10:16 佬zz 阅读(35) 评论(0) 推荐(0)
摘要: java基础 常量缓存池 Integer integer = new Integer(18); Integer integer1 = new Integer(18); Integer integer2 = Integer.valueOf(18); Integer integer3 = Integer 阅读全文
posted @ 2023-09-15 10:15 佬zz 阅读(16) 评论(0) 推荐(0)