我想在同时具有jQuery和Prototype的页面中使用Zepto。
但我在Zepto文档中找不到noConflict()
。我在同一页面上使用我的jquery代码和原型,所以没有冲突非常重要。
有人可以告诉我如何在noConflict模式下使用Zepto吗?
答案 0 :(得分:4)
如果你在jQuery之后包含Zepto或将获取$
的任何库,它看起来像here in the source,它将不会设置它(defacto noConflict()
):
// If `$` is not yet defined, point it to `Zepto`
window.Zepto = Zepto
'$' in window || (window.$ = Zepto)