addEventListener calls the function without me even asking it to(addEventListener 调用该函数,我什至没有要求它)
问题描述
所以我们有一个页面:
<span id='container'>
<a href='#' id='first'>First Link</a>
<a href='#' id='second'>Second Link</a>
</span>
并且想添加一些点击事件:
And want to add some click events:
first.addEventListener('click', function(){alert('sup!');})
像魅力一样工作!但是,当您将第二个参数设为外部函数时:
Works like a charm! However, when you make the second argument an external function:
function message_me(m_text){
alert(m_text)
}
second.addEventListener('click', message_me('shazam'))
它立即调用该函数.我怎样才能阻止这个?好烦!
It calls the function immediately. How can I stop this? So annoying!
这是一个现场演示:http://jsfiddle.net/ey7pB/1/
推荐答案
引用 Ian 的答案:
由于第二个参数需要一个函数reference,因此您需要提供一个.使用有问题的代码,您会立即调用该函数并传递其 result (即 undefined
...因为该函数所做的所有事情都是 alert
并且不返回任何内容).在匿名函数中调用函数(如您的第一个示例)或更改函数以返回函数.
Since the second parameter expects a function reference, you need to provide one. With your problematic code, you're immediately calling the function and passing its result (which is
undefined
...because all the function does isalert
and doesn't return anything). Either call the function in an anonymous function (like your first example) or alter the function to return a function.
function message_me(m_text){
alert(m_text)
}
second.addEventListener('click',
function() {
message_me('shazam');
}
);
这是一个更新的 fiddle.
这篇关于addEventListener 调用该函数,我什至没有要求它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:addEventListener 调用该函数,我什至没有要求它
基础教程推荐
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 动态更新多个选择框 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01