如何将 jQuery 函数放入 *.js 文件中?
在头部部分我嵌入了“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在文档的头部将代码放入就绪调用中。
In the head of your document put the code in a ready call.