如何从普通的 JS 函数调用 jQuery 函数?

发布于 2024-08-30 22:48:26 字数 136 浏览 2 评论 0原文

如何从普通的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

弄潮 2024-09-06 22:48:26

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.

恏ㄋ傷疤忘ㄋ疼 2024-09-06 22:48:26

jQuery 函数是普通的 javascript 函数。

因此,您只需像以下使用 jQuery 的 trim() 的示例中那样像“普通”函数一样调用它即可。

    function isStringEmpty(str){
                             // jquery function
        return str!==null && jQuery.trim(str).length > 0;
    }
    alert(isStringNullorEmpty("hello")); //alerts false
    alert(isStringNullorEmpty("")); //alerts true

jQuery functions are normal javascript functions.

So, you just call it like a "normal" function like in the following example using jQuery's trim().

    function isStringEmpty(str){
                             // jquery function
        return str!==null && jQuery.trim(str).length > 0;
    }
    alert(isStringNullorEmpty("hello")); //alerts false
    alert(isStringNullorEmpty("")); //alerts true
病女 2024-09-06 22:48:26

jQuery 函数普通的 JavaScript 函数。

 function myFunction () {
     function_name(); // and / or
     object.property_name();
 }

 myFunction();

A jQuery function is a normal JavaScript function.

 function myFunction () {
     function_name(); // and / or
     object.property_name();
 }

 myFunction();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文