Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これはconsole.log($(this));私が試しconsole.log($(this).0);たものでしたが、うまくいきませんでした。
console.log($(this));
console.log($(this).0);
私はあなたが意味すると思います:
console.log( $(this).get(0) );
あなたがしたいでしょうconsole.log($(this)[0]);
console.log($(this)[0]);