m********l 发帖数: 791 | 1 我初学jQuery, 在project当中使用了很多的plugin,有没有坏处。
还是只有在完全必要的情况下使用plugin?
多谢 |
n******e 发帖数: 708 | 2 plugin 下载需要时间。这是我能想到的唯一坏处。
不过可以通过改服务器的setting让plugin不重复下载。
事实上很多浏览器都不重复下载一个网站的.js .css什么的。
所以综上我觉得没什么问题
【在 m********l 的大作中提到】 : 我初学jQuery, 在project当中使用了很多的plugin,有没有坏处。 : 还是只有在完全必要的情况下使用plugin? : 多谢
|
m********l 发帖数: 791 | 3 很多都会被放在CACHE里吧
【在 n******e 的大作中提到】 : plugin 下载需要时间。这是我能想到的唯一坏处。 : 不过可以通过改服务器的setting让plugin不重复下载。 : 事实上很多浏览器都不重复下载一个网站的.js .css什么的。 : 所以综上我觉得没什么问题
|
n******e 发帖数: 708 | 4 yes
【在 m********l 的大作中提到】 : 很多都会被放在CACHE里吧
|
c**t 发帖数: 2744 | 5 if the files are separeted, there will be multiple requests for the 1st time
; JS will take time to run; if there is any js error, following JS won't
execute...
【在 m********l 的大作中提到】 : 我初学jQuery, 在project当中使用了很多的plugin,有没有坏处。 : 还是只有在完全必要的情况下使用plugin? : 多谢
|
H*******g 发帖数: 6997 | 6 combine it? 因为单个JS,每次都是一个REQUEST,如果访问量大的话,可能会有点影
响。 |
m********l 发帖数: 791 | 7 是的,我现在的情况就是load页面的时候 大量的jQuery pligins 我觉得很影响页面
的响应速度但是因为自己是初学的,就像java的API一样,有好的库就会去使用,而不
是还要自己
从基础开始写
现在我是chart, grid, layout, date picker都使用plugin,想问问大家有没有什么改
进的建议。还有如果真的使用很多jquery plugin的话有什么需要注意的地方?
那些JS files都是文件形式存储在服务器端,通过了testing以后应该就不会出错了吧?
本人初学,多多指教哈~
time
【在 c**t 的大作中提到】 : if the files are separeted, there will be multiple requests for the 1st time : ; JS will take time to run; if there is any js error, following JS won't : execute...
|