9年3个月前
var a = {n:1},
b = a;
a.x = a = {n:2};
console.log(a.x);
console.log(a);
console.log(b);
==》==》
...
9年3个月前
1.z-index越大越靠前的条件:①.只有在position:relative、position:absolute和position:fixed参与的情况下才有作用。②.得在同一级定位元素中才有可比性。
...
9年3个月前
<textarea name="textarea" id="textarea" style='overflow-y: hidden;height:20px' onpropertychange="this.style.height = this.scrollHeight + 'px';" on...
9年3个月前
通常,由HTTP客户端发起一个请求,创建一个到服务器指定端口(默认是80端口)的TCP连接。HTTP服务器则在那个端口监听客户端的请求。一旦收到请求,服务器会向客户端返回一个状态,比如"HTTP/1.1 200 OK",以及返回的内容,如请求的文件、错误消息、或者其它信息。
HTTP/1.1协议中共定义了八种方法(也叫“动作”)来以不同方式操作指定的资源:
OPTION...
9年3个月前
在js逻辑运算中,0、""、null、false、undefined、NaN都会判为false,其他都为true
typeof 5 "number" typeof !!5 "boolean"
if(a >=5){ alert("你好"); } 可以写成: a >= 5 && alert(&...
9年7个月前
第一个meta标签表示:强制让文档的宽度与设备的宽度保持1:1,并且文档最大的宽度比例是1.0,且不允许用户点击屏幕放大浏览;
第二个meta标签是iphone设备中的safari私有meta标签,它表示:允许全屏模式浏览;
第三个meta标签也是iphone的私有标签,它指定的iphone中safari顶端的状态条的样式;
第四个meta标签表示:告诉设备忽略将页面中的数字识别为电话...
9年7个月前
--------学习angularJs心路历程-------
...
加载更多