摘要: $(window).height(); //浏览器时下窗口可视区域高度 $(document).height(); //浏览器时下窗口文档的高度 ($(document.body).height();//浏览器时下窗口文档body的高度 $(document.body).outerHeight(true);//浏览器时下窗口文档body的总高度 包括border padding margin $... 阅读全文
posted @ 2018-01-22 10:07 小小lomo 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 很简单: 阅读全文
posted @ 2018-01-19 10:17 小小lomo 阅读(127) 评论(0) 推荐(0) 编辑
摘要: html: js: 实现的思路就是响应键盘事件。下面是搜集到的keyCode: 阅读全文
posted @ 2018-01-16 09:43 小小lomo 阅读(8352) 评论(0) 推荐(0) 编辑
摘要: css禁止点击页面元素,只需一句代码即可解决: 如果用js来控制的话那就是: 阅读全文
posted @ 2018-01-11 09:47 小小lomo 阅读(1325) 评论(0) 推荐(0) 编辑
摘要: 常见class关键词: 布局类:header, footer, container, main, content, aside, page, section 包裹类:wrap, inner 区块类:region, block, box 结构类:hd, bd, ft, top, bottom, lef 阅读全文
posted @ 2018-01-09 15:56 小小lomo 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 事件兼容 js停止冒泡· js阻止默认行为 阅读全文
posted @ 2018-01-08 15:26 小小lomo 阅读(102) 评论(0) 推荐(0) 编辑
摘要: post方式同样有两种办法,一种是表单提交,一种是ajax提交。 在此之前需要安装一个中间件:body-parser,安装好后在app.js头部引入: 并且添加配置代码: 1、form提交: 前台模板文件post.ejs上写如下代码: index.js添加一个路由规则: 2、ajax提交: 前台模板 阅读全文
posted @ 2017-04-19 22:53 小小lomo 阅读(2281) 评论(0) 推荐(0) 编辑
摘要: 、有两种办法,一种是表单提交,一种是ajax方式提交。 1、form提交 在前台模板文件上写: index.js添加一个路由规则: 2、ajax提交 (1)先引入jQuery; (2)前台模板文件写: 阅读全文
posted @ 2017-04-19 22:31 小小lomo 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 一、在package.json依赖模块添加: "mysql" : "latest",执行npm install; 二、module目录下新建mysql.js: 阅读全文
posted @ 2017-04-17 15:39 小小lomo 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 创建数据表user 1 CREATE TABLE `node`.`user`( 2 `id` INT(11) NOT NULL AUTO_INCREMENT, 3 `username` varchar(64) NOT NULL , 4 `pass` varch... 阅读全文
posted @ 2017-04-17 15:32 小小lomo 阅读(127) 评论(0) 推荐(0) 编辑