A single-case pattern for learning JavaScript design Patterns

Source: Internet
Author: User

1, the core of the singleton mode is to ensure that there is only one instance and provide global access.

2. An inert singleton refers to creating an object instance when needed.

such as creating a unique div in the page general practice

var Creatediv = (function () {
var Div;
return function () {
if (!div) {
div = document.createelement ("div");
Div.style.width= "100px";
div.innerhtml = "FDSAFDSAFDSAFDSA";
Div.style.display = ' None ';
Document.body.appendChild (DIV);
return div;
}
return div;
}
})();

document.getElementById ("btn"). onclick = function () {
var loginlayer = Creatediv ();
Loginlayer.style.display = ' block ';
}

Application of general inertia single case

var getsingle = function (fn) {
var result;
return function () {
return Result | | (Result = Fn.apply (this,arguments));
}
}

var creatediv = function () {
var div = document.createelement ("div");
Div.style.width= "100px";
div.innerhtml = "FDSAFDSAFDSAFDSA";
Document.body.appendChild (DIV);
return div;
}

var createsinglediv = Getsingle (Creatediv);
document.getElementById ("btn"). onclick = function () {
var loginlayer = Createsinglediv ();
Loginlayer.style.display = ' block ';
}

A single-case pattern for learning JavaScript design Patterns

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.