摘要:
类数组转换为数组 阅读全文
摘要:
mode:history 阅读全文
摘要:
windows7情况: 系统环境变量:命令行中要运行node,那么node.cmd的路径必须配置在系统环境变量的path里面(相当于运行一个软件,在这里必须有他的地址) 安装node.js后: C:\Users\MrsH\AppData\Roaming\npm npm默认的全局安装包(node_gl 阅读全文
摘要:
function change(){ console.log(typeof fn)//function function fn(){} var fn =1; //var fn;与fn=1;效果一样 } change() //变量声明上述代码等于, function change(){ functio 阅读全文
摘要:
$('.box1').children[0].nodeName //div: 忽略空白节点,只选择element元素节点,而且兼容IE678 $('.box1').firstChild.nodeName //#text $('.box1').childNodes[0].nodeName //#tex 阅读全文
摘要:
prototype:1、function带有的默认属性 2、是一个对象,是这个函数的属性的集合 3、包含一个constructor和_proto_ 阅读全文
摘要:
数组: slice(start,end)//含start,不含end,返回抽取内容不改变原数组 splice(start,del,add)//含start,返回抽取内容,要改变数组 字符串: substr(start,length)//含start,返回抽取内容,不改变原数组 ,start可以为负数 阅读全文
摘要:
offsetTop (offsetLeft):相对于版面或由 offsetTop 属性指定的父坐标的计算顶端位置 event.clientX 相对文档的水平座标 event.clientY 相对文档的垂直座标 event.offsetX 相对容器的水平坐标 event.offsetY 相对容器的垂直 阅读全文
摘要:
//当屏幕大于769px @media screen and (min-width: 769px){} //当屏幕小于769px @media screen and (max-width: 768px){}//calc自动计算 (百分比空格(+-*X)空格20px) width: calc(50% - 20px); 阅读全文