javascript - Wozu dient die Anweisung „constructor:Plugin' im JQ-Plugin?
女神的闺蜜爱上我
女神的闺蜜爱上我 2017-06-12 09:29:41
0
1
719

Ich bin auf ein Problem mit dem Fall gestoßen, auf den ich mich beim Erlernen der benutzerdefinierten JQuery-Plug-In-Entwicklung bezog.

女神的闺蜜爱上我
女神的闺蜜爱上我

Antworte allen(1)
为情所困

将构造函数指向本身,否则默认指向Object

var Plugin = function(){}
Plugin.prototype = {
    sayHello:function(){
        console.log("hello")
    }
}
var p = new Plugin()
console.log(p.constructor === Object) //true

如果加上constructor

var Plugin = function(){}
Plugin.prototype = {
    constructor: Plugin,
    sayHello:function(){
        console.log("hello")
    }
}
var p = new Plugin()
console.log(p.constructor === Plugin) //true
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage