首页 > 代码库 > jQuery is not defined

jQuery is not defined

今天在试验jqgrid时用到jquery,一直报jQuery is not defined错误。

此错误的原因基本是jquery文件引入时路径有错误。

最初用src="http://www.mamicode.com/js/jquery-1.11.0.min.js",在eclipse中可以找到该文件,但是在firebug中表示路径有误。改为js/jquery-1.11.0.min.js就可以了。

另外一种解决办法是采用google或microsoft的jquery库,如果用户访问其他网站已加载过google的jquery库,可以从缓存中加载,减少加载时间。google的jquery路径为src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"