jquery 与其他库冲突解决方案

var j = jQuery.noConflict();

j("div p").hide();	// 基于 jQuery 的代码

$("content").style.display = "none";	// 基于其他库的 $() 代码
原文地址:https://www.cnblogs.com/timelesszhuang/p/3677845.html