Bind/on in JavaScript, JQuery, Backbone, underscore

Source: Internet
Author: User
Tags custom name

    • Jquery

$ ("#foo"). Bind ("click", Function () {

Alert ("User clicked on ' foo.");

});
On aliases

    • Backbone

var object = {};
_.extend (object, backbone.events);

Object.on ("Alert", Function (msg) {
Alert ("triggered" + msg);
});

Object.trigger ("Alert", "an event");

Object gets the ability to bind and trigger custom name events after extend Backbone.events.
On aliases

    • Underscore

Bind
_.bind (function, object, *arguments)

var func = function (greeting) {return greeting + ': ' + this.name};
Func = _.bind (func, {name: ' Moe '}, ' Hi ');
Func ();
= ' Hi:moe '

When you bind a function to a object,function call, this points to object.

Bindall _.bindall (object, *methodnames)
Binding a methods to a object,function call with a series of methodnames in the context of the object.

    • Javascript

Function.prototype.bind ()

Fun.bind (thisarg[, arg1[, arg2[, ...])

It has little to do with the other three kinds of bind.

Bind/on in JavaScript, JQuery, Backbone, underscore

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.