我必须使用代码在页面中包含 jQuery:
if (typeof window.jQuery === "undefined") {
document.write('<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"><\/script>');
if (typeof Prototype !== "undefined") {
document.write('<script>jQuery.noConflict();<\/script>');
}
}
但是,如果我尝试使用 jQuery,Firebug 会记录“jQuery undefined”。
jQuery(document).ready(function() {
//
});
但 jquery 已正确加载