gpt4 book ai didi

javascript - 修复编译为未定义?

转载 作者:行者123 更新时间:2023-11-30 16:11:10 27 4
gpt4 key购买 nike

<分区>

我的 app.js 是用 es6 标准写的,我的问题是 >我怎样才能使用这样的代码?:

$('img').each(() => {
var title = $(this).attr('src');
titles.push(title);
});

我观察到 Node 将此代码编译为:

'use strict';

$('img').each(function () {
var title = $(undefined).attr('src');
titles.push(title);
});

将“this”编译为“undefined”,我该如何解决?提前致谢 ;)

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com