06 Apr 2012

jQuery オブジェクトと DOM エレメントの変換

ジェイクエリーすぐ忘れる

DOM エレメント -> jQuery オブジェクト

$() 関数に入れてあげれば OK

var sample = document.querySelector('#sample');
var jq_obj = $(sample);

jQuery オブジェクト -> DOM エレメント

jQuery オブジェクトのインデックス 0 らしい

var dom_element = jq_obj[0];

検証

var body = document.querySelector('body');
var jq_obj = $(body);
var dom_elm = jq_obj[0];
body === dom_elm   // true
初めてのJavaScript 第3版 ―ES2015以降の最新ウェブ開発
Ethan Brown
オライリージャパン
売り上げランキング: 17,881