我在下面试过这个。我认为$("div.tab_select")[0]的返回对象不是 jQuery 对象,但我什至不能使用纯 JavaScript 方法。
有没有办法让它成为 jQuery 对象?例如$($("div.tab_select")[0]) ..我知道这很愚蠢;
感谢您的阅读。
var tmp = $("div.tab_select")[0];
alert(tmp); //This gives me HTMLDivElement collectly. But I can't use any of javascript..
alert(tmp.nodeName); //But this give me error "Uncaught TypeError: Cannot read property 'nodeName' of undefined"
tmp.hide(); //Neither, I can't use this.