Javascript 事件处理程序 - 为什么这样做有效?

标签 javascript events handler

我是 javascript 的新手,您可以从下面的代码中看出这一点。我想为页面上的 6 个按钮创建一个事件处理程序。单击按钮时,按钮下方代码块的显示属性从“无”变为“ block ”。为此,我需要将每个按钮与一个单独的 html 部分相关联(在本例中为具有唯一 ID 的标签 - pt1、pt2 等)。

我为此苦苦挣扎了一段时间,并让下面的代码开始工作。这就是问题所在!事实证明我完全错了。但是,作为一个新手,当它起作用时,我认为我正在做某事。因为我在这上面花了几个小时,所以我需要知道为什么下面的代码有效(这样我会觉得我学到了一些东西)。我将突出显示代码中我无法终生验证其工作原理的部分。

var buttons = document.getElementsByClassName("CSS");

for (var i = 0; i < buttons.length; i++) {
    // Generate strings associated with the button ids and the event handlers for each button
    var buttonID = "button" + i;
    var clickHandlerID = "clickHandler" + i;
    var buttonEH = document.getElementById(buttonID);
    // Identify the button elements by id

    // As clickHandlerID is a string, to get the browser to recognise it as a function name
    var clickHandler = window[clickHandlerID];

    buttonEH.addEventListener("click", clickHandler, false);
}

/*****************************************************************************/

// Why does this work?
// clickHandler1, clickHandler2, etc are not referenced in my event handler.
// My botched attempt to create them in the event handler (var clickHandler = window[clickHandlerID];)
// resulted in "undefined" values (from console.log(clickHandler)).
// Yet it worked?!?! (I did eventually find the correct approach, a simple 10 line solution,
// but I am troubled that I don't understand what is going on here. Any help would be greatly appreciated!!)

/*****************************************************************************/


function clickHandler1 () {
    if (pt1.style.display === "block") {
        pt1.style.display = "none";
    } else {
        pt1.style.display = "block";
    }
}

function clickHandler2 () {
    if (pt2.style.display === "block") {
        pt2.style.display = "none";
    } else {
        pt2.style.display = "block";
    }
}

最佳答案

var buttons = document.getElementsByClassName("CSS");

for (var i = 0; i < buttons.length; i++) {
    // Generate strings associated with the button ids and the event handlers for each button
    var buttonID = "button" + i;
    var clickHandlerID = "clickHandler" + i;
    var buttonEH = document.getElementById(buttonID);
    // Identify the button elements by id

    // As clickHandlerID is a string, to get the browser to recognise it as a function name
    var clickHandler = window[clickHandlerID];
    console.log(clickHandler);

    buttonEH.addEventListener("click", clickHandler, false);
}

/*****************************************************************************/

// Why does this work?
// clickHandler1, clickHandler2, etc are not referenced in my event handler.
// My botched attempt to create them in the event handler (var clickHandler = window[clickHandlerID];)
// resulted in "undefined" values (from console.log(clickHandler)).
// Yet it worked?!?! (I did eventually find the correct approach, a simple 10 line solution,
// but I am troubled that I don't understand what is going on here. Any help would be greatly appreciated!!)

/*****************************************************************************/


function clickHandler0 () {
    if (pt0.style.display === "block") {
        pt0.style.display = "none";
    } else {
        pt0.style.display = "block";
    }
}
function clickHandler1 () {
    if (pt1.style.display === "block") {
        pt1.style.display = "none";
    } else {
        pt1.style.display = "block";
    }
}

function clickHandler2 () {
    if (pt2.style.display === "block") {
        pt2.style.display = "none";
    } else {
        pt2.style.display = "block";
    }
}
#pt0, #pt1, #pt2, #pt3 {
    display: none;
}
<button id="button0" class="CSS">button 1</button>
<button id="button1" class="CSS">button 2</button>
<button id="button2" class="CSS">button 3</button>

<div id="pt0">PT1</div>
<div id="pt1">PT2</div>
<div id="pt2">PT3</div>

在顶级作用域中定义的所有函数和变量都成为 window 对象的属性。所以 window['clickHandler1'] 等同于 clickHandler1。您的代码:

var clickhandler = window[clickHandlerID];

clickHandlerID设置为"clickHandler1""clickHandler2"等字符串时

关于Javascript 事件处理程序 - 为什么这样做有效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29979864/

相关文章:

javascript - 获取图片路径,宽度和高度,并通过上传图片将它们放入输入字段

javascript - 寻找深色/浅色

c# - 委托(delegate)与事件

javascript - dojo onClick() 事件和 javascript 范围

linux - nanosleep() 系统调用因总线错误而醒来?

android - 在触摸事件期间从后台线程更新 UI

javascript - 使用键值组合数组中的对象值

javascript - 将解析值分配给全局变量 - promise

twitter-bootstrap - 使用 Bootstrap 选择插件在选择时触发事件 "change",仅在第二次单击后触发

algorithm - 是否有一种算法可以检测相对于数据集的奇数值