javascript 备忘 细节 相关】的更多相关文章

DOMContentLoaded事件触发时机,即dom tree完成但页面未必渲染完毕.   var a = [1,2,3,4]; var length = a.length; alert((length - 1 in a));     返回true   当一个函数没有明确返回值的时候,实际上它返回 undifined  当函数参数遗漏没有赋值时,该值将传入 undefined ,超过函数定义的参数数量以后的值会被忽视 可以传入任意数量参数,然后从arguments获取   JavaScript…
使用备忘模式,利用了函数的自定义属性,先看一个例子 var test = function (){} test.myAttr = "attr"; 这样,就给test加上了一个自定义的属性,myAttr. 备忘模式,正式利用了这个方法,将已经运行过的结果存储起来,将函数接受到的参数作为key,将函数运行的结果作为value返回即可.代码如下 var myFunc = function (param) { if(!myFunc.cache[param]){ var result = {};…
一.函数与形参 1.函数 function abs(x) { if (x >= 0) { return x; } else { return -x; } } alert(abs(-10)); 2.匿名函数 var abs = function (x) { if (x >= 0) { return x; } else { return -x; } } alert(abs(-10)); 3.argument传入参数 普通函数写法 function abs() { if (arguments.len…
js输出对象类型: Object.prototype.toString.apply(s) 设置单行点击效果: obj.style.background = "#efefef";setTimeout(function() {obj.style.background = "";}, 100); js编码:alert(encodeURIComponent('你'));js解码:var a= encodeURIComponent('你');alert(decodeURI(a…
1遍历所有属性 var person={fname:"John",lname:"Doe",age:25}; for (x in person) { txt=txt + person[x]; } 2.array 有 lenth 属性 var arr = new Array(); var len = arr.lenth; 3 === 类型也相同 4 访问属性的两种方法 objectName.propertyName objectName["propertyNa…
一.字符串操作 1.大小写 var s = "hello"; undefined g = s.toUpperCase(); "HELLO" g; "HELLO" g.toLowerCase(); "hello" 2.索引/截断 s.indexOf('o'); 4 all.js:1 loading comments... var l = "hello world"; undefined l.substring…
docker安装 linux上安装Docker(非常简单的安装方法) https://blog.csdn.net/qq_36892341/article/details/73918672 修改docker镜像源 修改或新增 /etc/docker/daemon.json # vi /etc/docker/daemon.json { "registry-mirrors": ["http://hub-mirror.c.163.com"] } systemctl rest…
在安装php的时候,不管是编译安装: ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with…
<script type="text/javascript"> var jsObject = @Html.Raw(Json.Encode(Model.Objects)); </script> 记录一下,备忘.…
body { font-family: "Microsoft YaHei UI","Microsoft YaHei",SimSun,"Segoe UI",Tahoma,Helvetica,Sans-Serif,"Microsoft YaHei", Georgia,Helvetica,Arial,sans-serif,宋体, PMingLiU,serif; font-size: 10.5pt; line-height: 1.5;…