javascript - Using addEventListener on Prototype - Stack Overflow

I am trying to run the results of Prototype via a click through addEventListener but the results are sh

I am trying to run the results of Prototype via a click through addEventListener but the results are showing even without clicking.

<div id="box">Your Item:</div>

<button id="myBtn">Buy</button>

<script type="text/javascript">
function Machine(n,p){
this.name = n;
this.price = p;
}


Machine.prototype.Dispatch = function(){
var container = document.getElementById('box');
container.innerHTML = this.name + " " + this.price;
}
var Drink = new Machine("coke",80);
var Handle = document.getElementById('myBtn');
Handle.addEventListener("click",Drink.Dispatch(),false);
</script>

/

I am trying to run the results of Prototype via a click through addEventListener but the results are showing even without clicking.

<div id="box">Your Item:</div>

<button id="myBtn">Buy</button>

<script type="text/javascript">
function Machine(n,p){
this.name = n;
this.price = p;
}


Machine.prototype.Dispatch = function(){
var container = document.getElementById('box');
container.innerHTML = this.name + " " + this.price;
}
var Drink = new Machine("coke",80);
var Handle = document.getElementById('myBtn');
Handle.addEventListener("click",Drink.Dispatch(),false);
</script>

http://jsfiddle/9trqK/

Share Improve this question edited Apr 9, 2023 at 17:48 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Jan 11, 2013 at 19:59 user1336103user1336103 3,8874 gold badges17 silver badges13 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 10

You have to pass a function reference to addEventListener, instead of calling the function (and passing its return value) as you're doing:

Handle.addEventListener("click", Drink.Dispatch, false);

When you do that, your handler will only be fired on click. But you will face a different problem: this inside the handler will be the clicked element, not your Machine instance. To solve that, you can use Function.bind (see the linked docs for a polyfill for older browsers):

var drink = new Machine("coke",80);
var handle = document.getElementById('myBtn');
handle.addEventListener("click", drink.Dispatch.bind(drink), false);

Note: It's mon practice to only use uppercase initials for constructor function names, so you can tell them apart on a quick glance. That's why I renamed Drink and Handle to drink and handle.

You need to add your call between a function() {} closure for your listener. Or remove the () after your function name.

This should work: http://jsfiddle/9trqK/1/

function Machine(n, p) {
  this.name = n;
  this.price = p;
}
var handle = document.getElementById('myBtn');
Machine.prototype.Dispatch = function () {
  var container = document.getElementById('box');
  container.innerHTML = this.name + " " + this.price;
}
var Drink = new Machine("coke", 80);
handle.addEventListener("click", function() { Drink.Dispatch() }, false);

To do custom events on object I use this simple script to extend my objects:

/* Simple Custom event prototype for objects

Extend your object like this:

<OBJECT>.prototype = new EventEmitter;

Then you can use :

<OBJECT>.on("test",function() { alert("Test event triggered"); })
<OBJECT>.on("test",function() { alert("Test event 2 triggered"); })
<OBJECT>.trigger("test");

*/
function EventEmitter() {

    var listeners = Object();   //Matrix of event/callbacks

    //Add listener
    this.on = function(evt, callback) {
        //console.log("Listener added: " + evt);

        if (!listeners.hasOwnProperty(evt))
            listeners[evt] = Array();

        listeners[evt].push(callback);      
    }

    //Call listeners
    this.trigger = function(evt, params) {
        //console.log("trigger called " + evt);
        //console.dir(listeners);

        if (evt in listeners) {
            callbacks = listeners[evt];
            //Call all callbacks with the params
            for (var x in callbacks){
                callbacks[x](params);
            }
        } else {
            console.log("No listeners found for " + evt);
        }

    }
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743659086a4485882.html

相关推荐

  • javascript - Using addEventListener on Prototype - Stack Overflow

    I am trying to run the results of Prototype via a click through addEventListener but the results are sh

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信