これは私が見落としているものに違いありませんが、次のページと 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
機能しません。
どんな助けでも大歓迎です!