古人学问无遗力,少壮工夫老始成。这篇文章主要讲述18-2-call和apply相关的知识,希望能为你提供帮助。
< !DOCTYPE html> < html lang="en"> < head> < meta charset="UTF-8"> < title> Title< /title> < style> body { font-family: "Microsoft YaHei", serif; }body, dl, dd, p, h1, h2, h3, h4, h5, h6 { margin: 0; }ol, ul, li { margin: 0; padding: 0; list-style: none; }img { border: none } < /style> < /head> < body> < script> // function a() { //console.log(1); //console.log(2); //console.log(this); // } // a(); // a.call(document); // call第一个实参是this的指向// function a(x,y) { //console.log(x); //console.log(y); //console.log(this); // } // a.call(document,x,y)// appl的使用 // function a(x,y) { //console.log(x); //console.log(y); //console.log(this); // } // a.apply(document,[img,9])function a() { alert(this) } < /script> < /body> < /html>
【18-2-call和apply】
推荐阅读
- darknet使用ncnn并移植到android
- Android Studio运行Hello World程序
- 安卓HiHardware 摄像头强制切换APP
- APP_测试流程(测试点)
- TCP_Wrappers基础知识介绍
- PouchDB创建批处理
- PostgreSQL触发器
- PostgreSQL视图用法
- PostgreSQL教程介绍