我尝试发布需要jQuery的Js库。 哪种包含它的最佳方式? 我现在有这种方法:
if(typeof jQuery == 'undefined'){
/*! jQuery v3.3.1 | (c) JS Foundation and other contributors | jquery.org/license */
!function(e,t){"use st......
}
//start my code below
但是如果加载器站点有旧版本的jQuery?..如何处理与我的代码的兼容性?
示例:我对事件使用.on
方法,但旧版本使用.bind
谢谢!