时间:2021-07-01 10:21:17 帮助过:6人阅读
var hello=$("#hello");//这是一个jquery对象。
var jsHello=$("#hello")[0];//这是一个js对象。
第二种方法:
jQuery本身提供,通过.get(index)方法,得到相应的JS对象
如:
var hello=$("#hello");//这是一个jquery对象。
var jsHello=$("#hello").get(0);//这是一个js对象。
JS对象转换为JQUERY对象。
对于已经是一个DOM对象,只需要用$()把DOM对象包装起来,就可以获得一个jQuery对象了
如:
var hello=document.getElementById("hello"); //DOM对象
var jqueryHello=$(hello); //jQuery对象