var box = document.getElementById('box'); console.log($(box));
第一种方式:
$('button')[0]
第二种方式:
$('button').get(0)
Last updated 5 years ago