Binding an existing JavaScript function in jQuery(在 jQuery 中绑定现有的 JavaScript 函数)
问题描述
使用 jQuery 我想将现有函数绑定到按钮.我浏览了文档并找到了 bind
方法,但是 jQuery 站点上的示例绑定了新创建的函数,因为我想绑定一个已经定义的函数,例如:
Using jQuery I want to bind an existing function to a button. I've been through the documentation and have found the bind
method but the examples on the jQuery site bind newly created functions where as I want to bind a function that's already defined, e.g:
function fHardCodedFunction(){
//Do stuff
}
function fBindFunctionToElement(){
$("#MyButton").bind("click", fHardCodedFunction());
}
这可能吗?还是我走错了路?
Is this possible? Or am I going about this the wrong way?
推荐答案
普通的 fHardCodedFunction
已经引用了函数,后缀 ()
只会调用它.所以只需传递函数而不是调用它,从而传递返回值:
The plain fHardCodedFunction
already refers to the function and the suffix ()
will just call it. So just pass the function instead of calling it and thereby just passing the return value:
function fBindFunctionToElement(){
$("#MyButton").bind("click", fHardCodedFunction);
}
这篇关于在 jQuery 中绑定现有的 JavaScript 函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 jQuery 中绑定现有的 JavaScript 函数
基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01