सवाल:
यदि मैं दो जावास्क्रिप्ट फ़ाइलों में लिंक करता हूं, दोनों $(document).ready
फ़ंक्शन के साथ , क्या होता है? क्या एक दूसरे को अधिलेखित करता है? या दोनों $(document).ready
को बुलाया जाता है?
उदाहरण के लिए,
<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!");
});
मुझे यकीन है कि दोनों कॉल को एक ही में संयोजित करना सबसे अच्छा अभ्यास है $(document).ready
लेकिन यह मेरी स्थिति में काफी संभव नहीं है।