摘要:
API Apis (Application Programming interfaces) are predefined functions designed to provide applications and developers the ability to access a set of 阅读全文
摘要:
一、函数的定义:函数:具有一定功能的代码块。 函数是通过function定义的,function 后跟的是函数名。 结构语法 function fn(){} 函数定义的四种方式 1. 声明式定义 function fn(){} 2. 表达式式定义 var an=function(){} 匿名函数 3 阅读全文
摘要:
在js中一般使用的循环有两种: 1.常规的for(var i=0;i<length;i++) 2.for-in:for(var item in list) 3.for of 描述对应于一个对象的每个属性,或一个数组的每个元素,执行一个或多个语句。 语法for (variable in [object 阅读全文
摘要:
From static to dynamic 1994 was a starting point for front-end history, when netscape launched its first version of Navigator on October 13th.This yea 阅读全文
摘要:
字符串替换<script>var str=('Paul,Paula,paul,Ppaul,Paul');var new_str=str.replace(/(Paul)/g,"ringo");//Paul替换为ringodocument.write(new_str);</script> 阅读全文