本文共 337 字,大约阅读时间需要 1 分钟。
1.配置:myconfig.js(按需配置)
require.config({ baseUrl: "../style/js", //该路径下的文件 paths: { 'jquery': 'jQuery-1.11.0', } });
2.html文档中加载如下文件
底部配置:
3.js配置
define(['jquery'],function ($) { var modal = {} modal.init = function(){ console.log(1); } return modal; });
完成
转载于:https://www.cnblogs.com/xiyu-8023/p/10058360.html