$('img').each(function() {
if (this.src.indexOf('larger') !== -1) {
var normalized = this.src.replace('larger', 'normalized');
console.log('found', normalized);
window.open(normalized);
};
});
我没有任何经验。我找到了这个片段并尝试运行它,但我一直收到 Uncaught TypeError: Cannot read property 'each' of null。现在更多是关于为什么我无法弄清楚这一点。