18-2-call和apply
Posted zhangyu12138
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章
Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段