如何从普通的 JS 函数调用 jQuery 函数?
如何从普通的 JS 函数调用 jQuery 函数? (需要 A + B 示例)
所以我需要一个 jQuery 函数将 varA 添加到 varB。 一个 JS 函数可以调用 jQuery 函数,将 varA 和 varB 发送给它并接收结果。
How to call jQuery function from normal JS function? ( A + B Sample needed)
So I need a jQuery function adding varA to varB.
And a JS function which could call that jQuery function sending varA and varB to It and reciving result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
jQuery 函数是普通的 javascript:jQuery 只是一个包含一堆编写得非常好且有用的 javascript 函数的文件。
您可以在此处查看最新版本的(100% javascript)源代码。
jQuery functions are normal javascript: jQuery is just a file that includes a bunch of extremely well-written and useful javascript functions.
You can view the (100% javascript) source for the latest release here.
jQuery 函数是普通的 javascript 函数。
因此,您只需像以下使用 jQuery 的
trim()
的示例中那样像“普通”函数一样调用它即可。jQuery functions are normal javascript functions.
So, you just call it like a "normal" function like in the following example using jQuery's
trim()
.jQuery 函数是普通的 JavaScript 函数。
A jQuery function is a normal JavaScript function.