js对象转换称jquery对象: $(js对象) 转了就可以使用jquery选择器和jquery的方法
例如: console.log($(item));
jquery对象转换称js对象: jquery[0] 或者$(this).get(0)
例如: console.log($(item)[0]);