1 : Mode d'appel de méthode
var myObj = {//对象字面量 param1: 1, param2: 2, sum: function (){ //this关键字只带当前的对象 return this.result = this.param1 + this.param2; } } myObj.sum(); //=>3
2 : Mode d'appel de fonction
var add = function(a, b){ return a + b; } //函数调用模式 add(1,2); //=>3
Très bien
function add(a, b){ return a + b; } add(1,2);//=>3
3 : Mode d'appel du constructeur
var add = function() { this.name = "汇智网"; this.sum = function (a, b){ return a + b; } } // 构造器调用模式 var obj = new add(); //obj是一个对象 obj.sum(1,2); //=>3
4 : appliquer le mode d'appel
var add = function (a, b) { return a + b; } add.apply(null,[1,2]); //=>3
Vous pouvez également utiliser l'appel
var add = function (a, b) { return a + b; } add.call(null,1,2); //=>3