如何将 jQuery 函数放入 *.js 文件中?

发布于 2024-12-22 01:12:55 字数 807 浏览 0 评论 0原文

在头部部分我嵌入了“jquery-X.min.js”,在底部(就在结束正文标记之前)我嵌入了“bottom.js”。

我想将 jQuery 函数添加到 Bottom.js,但似乎只有少数函数在那里工作,其他函数我必须使用脚本标签直接添加到 DOM。

在bottom.js中工作:

jQuery.fn.extend({insertAtCaret:function(a){...

或者

addOnloadHook(function () {...})

我需要添加到DOM:

<script type="text/javascript">
function someFunctionName(){if($(".someClassName").height()==0){...
</script>

如何添加到“bottom.js”?

编辑:

我在bottom.js中尝试过这个:

/* Fallback */
$(function () {
    if ($(".default").height() == 0) {
        $(".fallBack").toggle()
    }
});

/* Fallback */
if ($(".default").height() == 0) {
    $(".fallBack").toggle()
}

没有运气:/

In the head section I embed the "jquery-X.min.js" and on the bottom (right before the closing body-tag) I embed a "bottom.js".

I want to add jQuery functions to bottom.js, but it seems only a few work there, others I have to add directly to the DOM usings a script-tag.

Working in bottom.js:

jQuery.fn.extend({insertAtCaret:function(a){...

or

addOnloadHook(function () {...})

This I need to add to the DOM:

<script type="text/javascript">
function someFunctionName(){if($(".someClassName").height()==0){...
</script>

How would I add to "bottom.js"?

Edit:

I have tried this in bottom.js:

/* Fallback */
$(function () {
    if ($(".default").height() == 0) {
        $(".fallBack").toggle()
    }
});

and

/* Fallback */
if ($(".default").height() == 0) {
    $(".fallBack").toggle()
}

No luck :/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

静若繁花 2024-12-29 01:12:55

在文档的头部将代码放入就绪调用中。

$(function() {
 // Handler for .ready() called.
});

In the head of your document put the code in a ready call.

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