此博客是本人从学生时代开始做笔记所用, 部分是工作所遇问题,做填坑笔记,部分闲来查阅资料,加上自己的理解所总结的学习笔记, 常忙得不可开交,若漏了资料来源,望通知~ 前路漫漫,写点东西告诉自己正在一点点进步,而不要迷失于繁忙。
摘要: 定义:Http是计算机通过网络进行通讯的协议,http客户(浏览器)可以向http服务器(服务器)请求信息和服务,当前版本是1.1 特点:1.无状态连接,意味着浏览器发出请求,服务器返回数据后,连接立即关闭 2.请求(request)/应答(response)模型 3.使用内容类型,即返回的数据都有 阅读全文
posted @ 2016-10-27 15:08 炎泽 阅读(403) 评论(0) 推荐(0) 编辑
摘要: selection对象代表当前激活选中区,通常是高亮的文本块 创建选中区: 1.拖拽文本 2.脚本创建 cerateRange() 获取selection对象 IE document.selection() 非IE window.getSelection() eg: <div>请选中这里的部分文字。 阅读全文
posted @ 2016-10-26 21:23 炎泽 阅读(3912) 评论(0) 推荐(0) 编辑
摘要: 1.SyntaxError(语法错误) 解析代码时发生的语法错误 eg:var 1a; Uncaught SyntaxError: Unexpected number 2.ReferenceError(引用错误) a.引用了一个不存在的变量 eg: console.log(a); Uncaught 阅读全文
posted @ 2016-10-25 17:27 炎泽 阅读(11952) 评论(1) 推荐(1) 编辑
摘要: 除了alert弹窗,js还有confirm弹窗和prompt弹窗 var a= confirm("1111");alert(a) 弹出确认弹窗,有确认,取消按钮,确认返回true,取消返回false var b= prompt("请输入姓名", "");alert(b) 弹出输入框,一个是输入框的提 阅读全文
posted @ 2016-10-25 16:14 炎泽 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 首先,要想拖动元素,首先得设置draggable= "true" 适用范围:默认图片和链接是可拖动的,无需添加 兼容性: Internet Explorer 9+, Firefox, Opera, Chrome, 和 Safari eg: <img id= "aa" src="img/aHead.p 阅读全文
posted @ 2016-10-25 15:32 炎泽 阅读(879) 评论(0) 推荐(0) 编辑
摘要: 解析如下: !1 就是false,!0 就是true,但不代表1就是true,0就是false。 如果对象不为空,将进行循环返回false,否则,返回true 阅读全文
posted @ 2016-10-24 16:32 炎泽 阅读(169) 评论(0) 推荐(0) 编辑
摘要: css中transform包括三种: 旋转rotate(), translate()移动, 缩放scale(), skew()扭曲以及矩形变换matrix() 语法: transform: none | <transform-function> [ <transform-function> ]* t 阅读全文
posted @ 2016-10-24 14:46 炎泽 阅读(310) 评论(0) 推荐(0) 编辑
摘要: undefined 声明的变量尚未初始化 null 对象尚未存在 eg: var a; console.log(typeof a); 输出undefined var b= document.getElementById("b"); console.log(typeof b); console.log 阅读全文
posted @ 2016-10-23 20:22 炎泽 阅读(316) 评论(0) 推荐(0) 编辑
摘要: calc()可以给元素做运算, calc(expression) eg: .a { width: -webkit-calc(100% - 2px); width: -moz-calc(100% - 2px); width: calc(100% - 2px); } 语法: 1.可以使用+ - * %( 阅读全文
posted @ 2016-10-23 19:46 炎泽 阅读(199) 评论(0) 推荐(0) 编辑
摘要: style.cssText 用来获取/设置元素的样式 设置: <div id= "a" style= "background: red;"> document.getElementById("a").style.cssText= "width: 200px; height: 200px"; 设置成功 阅读全文
posted @ 2016-10-23 18:56 炎泽 阅读(143) 评论(0) 推荐(0) 编辑