在 jQuery 中 $('#el'); // 取得 id 為 el 的元素
在 JavaScript DOM 中 document.getElementById('el');
在 jQuery 中 $('.item'); // 取得 class name 為 item 的所有元素
在 JavaScript DOM 中 document.getElementsByClassName('item');