DOM对象转换成jquery对象
var box = document.getElementById('box');
console.log($(box));
jquery对象转化成DOM对象
第一种方式:
$('button')[0]
第二种方式:
$('button').get(0)
2021-08-12 08:44:35
var box = document.getElementById('box');
console.log($(box));
第一种方式:
$('button')[0]
第二种方式:
$('button').get(0)