After following, you can keep track of his dynamic information in a timely manner
Courses in the relevant section:Regular Expressions-Mars Text 1
var re1=new ReExp("\\d+", "igm");这是javascript的标准模式 var re1=/\d+/igm;这是perl写法。 注意javascript写法是要加多一个反斜杠的!!!
2020-06-020个赞
Courses in the relevant section:Basic concepts of classes and objects
echo
2020-12-060个赞
thinkphp框架
2020-11-280个赞
onmouseover事件 onmouseout事件 document.getEmenemtById('div1') label
这是js入门的视频。感谢php中文网,感谢妙味课堂。
2020-07-160个赞
for getElementsByTagName
2020-02-170个赞
setTimeout, clearTimeout
2020-02-220个赞
parseInt parseFloat ===
parseInt()函数还有一个默认参数没说。
2020-04-160个赞
arr.push从尾部添加数据,arr.pop从尾部删除数据 arr.unshift从头部添加数据,arr.shift从尾部删除数据 arr.length返回数组个数,赋值时可以调整数组个数。
2020-02-230个赞
Courses in the relevant section:Miaowei Classroom’s original JavaScript video tutorial——1-DOM-1
X var oFrag = document.createDocumentFragment() for(i:=0;i<100000,i++) { var oLi=document.createElement('Li'); oFrag.appendChild(oLi); } oUl.appendChild(oFrag);
2020-02-230个赞
这个是最好的javascript面向对象全网最好的视频教程。
2020-09-120个赞
Courses in the relevant section:function namespace
2023-04-210个赞
Courses in the relevant section:constant namespace
const关键字是定义局部常量,访问时需要带命名空间路径 define函数定义的常量是全局常量,不需要带路径
2023-04-210个赞
Courses in the relevant section:Ordinary variables in namespace
函数、类,、空间常量是在空间的.在命名空间中声明的变量是全局的.
2023-04-210个赞
Courses in the relevant section:Import and simplification of namespaces
命名空间中,只有3种元素(1)空间常量,使用const定义(2)空间函数(3)空间类 引用空间常量:use const TITLE; 引入空间函数 use function show; 引入空间类不需要use class Uer.直接use User
2023-04-220个赞
Courses in the relevant section:Trait class code reuse
trait方法高于父类方法,小三上位。
是insteadof,不是instanceof instead中文是相反的意思。
2021-02-210个赞