Câu hỏi:
Nếu tôi liên kết trong hai tệp JavaScript, cả hai đều có $(document).ready
chức năng, điều gì xảy ra? Có cái nào ghi đè lên cái kia không? Hay cả hai $(document).ready
được gọi?
Ví dụ,
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<script type="text/javascript" src="http://.../jquery1.js"></script>
<script type="text/javascript" src="http://.../jquery2.js"></script>
jquery1.js:
$(document).ready(function(){
$("#page-title").html("Document-ready was called!");
});
jquery2.js:
$(document).ready(function(){
$("#page-subtitle").html("Document-ready was called!");
});
Tôi chắc chắn rằng cách tốt nhất là kết hợp cả hai cuộc gọi thành một $(document).ready
nhưng không hoàn toàn có thể xảy ra trong tình huống của tôi.