最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript event listener firing on page load, not click event - Stack Overflow

programmeradmin1浏览0评论

I'm playing around with Javascript and created a class. On initializing the class, I add a button to a certain div and then add an event listener to that button for when it's clicked. What is happening though is that the function gets fired when the page loads, and not when the button is clicked. Here is my code:

    function Photobank(){
        this.photos;
        this.addPhotoButton;
    }

    Photobank.prototype.init = function(){
        var btn = document.createElement('button');
        btn.id = "photoupload";
        var t=document.createTextNode("ADD PHOTOS");
        btn.appendChild(t);
        this.addPhotoButton = btn;
        var pb = document.getElementById('photobank');
        pb.appendChild(this.addPhotoButton);
        this.addPhotoButton.addEventListener("click", this.launchMediaManager(), false);
    }

    Photobank.prototype.launchMediaManager = function(){
        alert("Launching Media Manager");
    }

Am I doing something noticeably wrong?

I'm playing around with Javascript and created a class. On initializing the class, I add a button to a certain div and then add an event listener to that button for when it's clicked. What is happening though is that the function gets fired when the page loads, and not when the button is clicked. Here is my code:

    function Photobank(){
        this.photos;
        this.addPhotoButton;
    }

    Photobank.prototype.init = function(){
        var btn = document.createElement('button');
        btn.id = "photoupload";
        var t=document.createTextNode("ADD PHOTOS");
        btn.appendChild(t);
        this.addPhotoButton = btn;
        var pb = document.getElementById('photobank');
        pb.appendChild(this.addPhotoButton);
        this.addPhotoButton.addEventListener("click", this.launchMediaManager(), false);
    }

    Photobank.prototype.launchMediaManager = function(){
        alert("Launching Media Manager");
    }

Am I doing something noticeably wrong?

Share Improve this question edited Jul 1, 2015 at 9:34 Manish Kr. Shukla 4,4771 gold badge21 silver badges35 bronze badges asked Feb 6, 2014 at 23:35 jordanjordan 10.8k10 gold badges46 silver badges81 bronze badges 4
  • possible duplicate of event listener in javascript not firing except for when the page is loaded – Felix Kling Commented Feb 6, 2014 at 23:38
  • 2 You'd surprised how often this is asked. – Felix Kling Commented Feb 6, 2014 at 23:42
  • @FelixKling Yeah, looks like that was my problem. Thanks for that link! – jordan Commented Feb 6, 2014 at 23:52
  • 1 And in case you will run into problems with this: stackoverflow./questions/20279484/… ;) – Felix Kling Commented Feb 7, 2014 at 0:49
Add a ment  | 

2 Answers 2

Reset to default 12

You're calling the function rather than passing the function as an argument to addEventListener. Take the parentheses off the end of the function name:

this.addPhotoButton.addEventListener("click", this.launchMediaManager, false);

It is because you are invoking the function and setting its result as the handler to the click event, instead set the function reference as the handler.

this.addPhotoButton.addEventListener("click", this.launchMediaManager, false);
发布评论

评论列表(0)

  1. 暂无评论