jquery 第二节 Dom和jQuery的互相转换时间:2023-03-10 02:28:30 1、Dom转jQuery Dom对象: var v_dom = document.getElementById("name"); 转换: jQuery对象: var v_jq = $(v_dom);