// create the HelloWorld application (single instance) var HelloWorld = function(){ // everything in this space is private and only accessible in the HelloWorld block //任何在这个区域的都是私有变量 ,只能在HelloWorld访问 var dialog, showBtn;
var toggleTheme = function(){ getEl(document.body, true).toggleClass('ytheme-gray'); }; // return a public interface return { init : function(){ showBtn = getEl('goNextBtn'); //绑定一个按钮 // attach to click event 加入事件 /showBtn.on('click', this.showDialog, this, true);
var singleton = new Singleton(); alert(__typeof__(singleton)); alert(singleton.GetValue()); alert(singleton.GetValue()); singleton.SetValue(1000000); var singleton = new Singleton(); alert(singleton.GetValue()); alert(singleton.GetValue());
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn