我正在向现有网站添加一个已经使用 require.js 编写的新 JavaScript 项目。
现有网站已经在其一些其他代码中使用了 jQuery,并且我从现有代码中收到了一些错误消息:
Uncaught TypeError: Object function ( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
return new jQuery.fn.init( selector, context, rootjQuery );
} has no method 'cookie'
看起来我在我的 require 项目中引入 jQuery 导致了冲突。
我怎样才能解决这个问题?