这一定是我忽略了的东西,但是请查看以下页面和 JavaScript,并告诉我为什么,对于所有神圣的东西,jQuery 不会返回 true?
HTML:http ://alcatel.scottbuckingham.com/reporting/test.html
<p class="test">hello1</p>
JS:http ://alcatel.scottbuckingham.com/reporting/_scripts/collapse.js
;(function($, window, document, undefined) {
var t = $('.test');
var s = $('.test');
console.log(t);
console.log(s);
if (t === s) {
console.log('yes');
}
})(jQuery, window, document);
我确实花了几个小时试图解决它并将其简化为这个几乎1 === 1
不起作用的声明。
非常感谢任何帮助!