上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页
摘要: SHOW TABLES; USE blog; -- ctrl+shift+r 删除注释 -- ctrl+shift+c 注释 -- 添加 内容 insert into 表()values() -- insert into users(us,ps,realname)values('lisi','123 阅读全文
posted @ 2022-02-23 22:53 还有什么值得拥有 阅读(74) 评论(0) 推荐(0) 编辑
摘要: Vimium是chrome浏览器的浏览网页插件,该插件方便用户在键盘上搜索内容、浏览网页。 常用 j 向下细微滚动窗口。 k向上细微滚动窗口。 u 向上移动半个屏幕(相当于PageUp) d 向下滚动半个屏幕。(相当于PageDown) Shift+j 下一个标签页。 shift+k 上一个标签页。 阅读全文
posted @ 2022-02-17 14:48 还有什么值得拥有 阅读(303) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-02-09 12:31 还有什么值得拥有 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 观察者模式 let Observer = (function () { let obj = {}; return { add: function (name, fn) { (obj[name] || (obj[name] = [])).push(fn); }, trigger: function ( 阅读全文
posted @ 2022-01-31 06:37 还有什么值得拥有 阅读(19) 评论(0) 推荐(0) 编辑
摘要: css 像素(现实不存在,逻辑上存在 ) 物理像素(现实存在,像素点和CSSpx 虽然写的一样 但不是一个东西) 相关概念 JS获取像素比dpr : window.devicePixelRatio 图片的高清显示 位图和矢量图 移动端高清图片显示(更具DPR自动匹配到相应的图片) <!DOCTYPE 阅读全文
posted @ 2022-01-25 12:23 还有什么值得拥有 阅读(23) 评论(0) 推荐(0) 编辑
摘要: process 进程 常用 /* argv argv0 execArav execPath */ const {argv,argv0,execArgv,execPath}=process; argv.forEach(item => { console.log(item); }); console.l 阅读全文
posted @ 2022-01-23 04:22 还有什么值得拥有 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 绑定catchtouchmove事件 return ; wx.ml <view class="c_con" wx:if="{{show}}" catchtouchmove="stopScroll"> <view> js stopScroll(){ return ; }, 阅读全文
posted @ 2022-01-20 14:50 还有什么值得拥有 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 1、在CMD中进入要启动的项目下,输入react-native start,等待启动成功 2、在上个服务启动的情况下,重新打开一个CMD,进入项目目录下,输入命令react-native run-android运行 阅读全文
posted @ 2021-12-28 21:42 还有什么值得拥有 阅读(270) 评论(0) 推荐(0) 编辑
摘要: XML <view class="authorized-mobile"> <view class="contnet"> <view class="img"></view> <button class="btn" open-type="getPhoneNumber" bindgetphonenumbe 阅读全文
posted @ 2021-12-24 11:24 还有什么值得拥有 阅读(480) 评论(0) 推荐(0) 编辑
摘要: //支付 payMent() { const that = this; // let data={ // courseId:that.data.courseId, // dealPrice:courseId, // primePrice:courseId, // studentId:courseId 阅读全文
posted @ 2021-12-23 14:15 还有什么值得拥有 阅读(37) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页