1
爲什麼ReferenceError:$未定義?使用Lab.js加載模塊
<script src="LAB.js"></script>
<script>
$LAB.script("jquery/jquery.js")
</script>
</body>
<p><?php echo mt_rand(89,161464) ?></p>
<script>
//Uncaught ReferenceError: $ is not defined
$(document).ready(function(){
console.log('reddy');
$("p").css('color','red');
})
</script>
但工作:
window.onload=function(){
$("p").css('color','red');
}
2. item1.js
var interface={name:'interface'};
item2.js
interface.hu={name:'int'};
$LAB.script("item2.js").wait();
$LAB.script("item1.js");
//未捕獲的ReferenceError:接口沒有定義 幫助