3
我想調用另一個JavaScript文件中的函數。
function foo(){
//before $.getScript
$.getScript('otherScript.js', function() {
otherFoo();
});
//after $.getScript
}
但是這會在調用otherFoo()函數之前執行otherScript.js的整個$(document).ready()部分。我怎樣才能防止$(document).ready()被調用,並只調用otherFoo()函數?
我不認爲你可以。 – putvande