0
在頭部我嵌入了「jquery-X.min.js」,在底部(在關閉body-tag之前)嵌入了一個「bottom.js」。如何將jQuery函數放置在* .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()
}
沒有運氣:/