<!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>