如果jquery未加载警报消息,请使用以下代码,否则无法正常工作,
jQuery的:
if (jQuery) {
alert("jQuery library is loaded!");
} else {
alert("jQuery library is not found!");
}
OR:
if (typeof jQuery != 'undefined') {
alert("jQuery library is loaded!");
}else{
alert("jQuery library is not found!");
}
答案 0 :(得分:2)
使用此测试可避免错误:
if (window.jQuery) {
如果未定义变量,则测试它是错误的。您要测试的是是否设置了全局对象的属性jQuery
。