jQuery对象和javascript对象互换

jquery变js

 var obj=$("dom"); 或

 var obj=jQuery("dom");

js 变 jquery

 var $jobj=$(obj); 或

var $jobj=jquery(obj);

原文地址:https://www.cnblogs.com/JhoneLee/p/3338849.html