requirejs直接引用zepto的方法
zepto并没有直接支持requirejs的引入,所以需要修改下源码,在v1.1.6版本line900处
// If `$` is not yet defined, point it to `Zepto` window.Zepto = Zepto window.$ === undefined && (window.$ = Zepto)
添加:
//add support for requirejs if ( typeof define === "function" && define.amd ) { define( "zepto", [], function () { return Zepto; } ); }
然后在调用处配置对应路径,引用方法同jquery
requirejs.config({baseUrl: '../your/path'});
requirejs(['zepto'], function ($) { //somecode }
相关推荐
80437916 2020-02-01
zhoutaifeng 2020-01-17
xxuncle 2019-12-29
89463661 2019-12-26
PowerITxiang 2019-11-04
cloudwiseAPM 2017-05-26
88570299 2019-07-01
momode 2019-07-01
Xhj 2019-06-29
Awara 2019-06-29
New丶Elements 2019-06-29
ftl 2019-06-29
thisisid 2019-06-29
FruitHardCandy 2018-04-18
cloudwiseAPM 2017-05-26
85173253 2016-08-09
野风技术札记 2019-06-28
mzy000 2019-06-28