博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
requirejs配置问题
阅读量:5278 次
发布时间:2019-06-14

本文共 475 字,大约阅读时间需要 1 分钟。

<script src="lib/requirejs/require.js " data-main="js/main.js"> </script>
 
 
再入口文件main.js里面需:
require.config({
shim:{
"bootstrap":{
exports:'bootstrap',
degs:['jquery']
}
},
paths : {
"jquery" : './jquery/dist/jquery.min' ,
"bootstrap":"./bootstrap/dist/js/bootstrap.min",
"index":"./index"
}
})
require(["jquery","bootstrap","index"],function($,bootstrap,index){
$(function(){
console.log('你好,国服第一李师师!');
alert('lishishi');
})
})

转载于:https://www.cnblogs.com/MDGE/p/9193131.html

你可能感兴趣的文章
Learning Python 009 dict(字典)和 set
查看>>
JavaScript中随着鼠标拖拽而移动的块
查看>>
HDU 1021 一道水题
查看>>
The operation couldn’t be completed. (LaunchServicesError error 0.)
查看>>
php每天一题:strlen()与mb_strlen()的作用分别是什么
查看>>
工作中收集JSCRIPT代码之(下拉框篇)
查看>>
《转载》POI导出excel日期格式
查看>>
code异常处理
查看>>
git - 搭建最简单的git server
查看>>
会话控制
查看>>
推荐一款UI设计软件Balsamiq Mockups
查看>>
Linux crontab 命令格式与详细例子
查看>>
百度地图Api进阶教程-地图鼠标左右键操作实例和鼠标样式6.html
查看>>
游标使用
查看>>
LLBL Gen Pro 设计器使用指南
查看>>
SetCapture() & ReleaseCapture() 捕获窗口外的【松开左键事件】: WM_LBUTTONUP
查看>>
Android 设置界面的圆角选项
查看>>
百度地图api服务端根据经纬度得到地址
查看>>
CSS中隐藏内容的3种方法及属性值
查看>>
每天一个linux命令(1):ls命令
查看>>