当前位置 : 主页 > 网络编程 > JavaScript >

requireJs的使用

来源:互联网 收集:自由互联 发布时间:2021-06-28
gistfile1.txt require.config({paths:{jquery: 'http://libs.baidu.com/jquery/2.0.3/jquery'}});require(['jquery','yl'],function ($,a) {console.log("aa");var hel = new a.Hello();alert("1");$("#btn").click(function () {console.log(hel.name);});}
gistfile1.txt
require.config({
	paths:{
		jquery: 'http://libs.baidu.com/jquery/2.0.3/jquery'
	}
});

require(['jquery','yl'],function ($,a) {
	console.log("aa");
	var hel = new a.Hello();
	alert("1");
	$("#btn").click(function () {
		console.log(hel.name);
	});

});
上一篇:jQuery做动态校验
下一篇:常用JS方法
网友评论