Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 require js 创建了一个书签,它在所有网站上都很好,除了那些已经使用 requirejs 的网站。我在文档中搜索,我没有找到任何“无冲突模式”,如 jquery 或管理多个版本的东西。任何想法 ?
谢谢。
在包含您的脚本之前,请检查是否定义了“require”对象。仅当对象未定义时才包含脚本
if(typeof require != 'undefined') { //include script }