gpt4 book ai didi

javascript - 为什么在检查代码块中的变量定义时 jslint 出错

转载 作者:行者123 更新时间:2023-11-29 18:26:30 24 4
gpt4 key购买 nike

我有以下代码:

         $('#modal .update-title')
.change(function () {
var title = $('option:selected', this).prop('title');
$(this).prop('title', title);

// For the question screen, after the initial set up
// changes move the title to the title input field.
if ($(this).data('propagate-title') === 'yes') {
var m = this.id.match(/^modal_TempRowKey_(\d+)$/);
if (m) {
$("#modal_Title_" + m[1]).val(title);
}
}
});

当我运行 jslint 时,出现以下错误:

   Combine this with the previous 'var' statement.
var m = this.id.match(/^modal_TempRowKey_(\d+)$/);

是jslint错了还是我错了?

最佳答案

使用 if 条件不会创建新范围。所以变量 m 只有在条件为真时才存在。所以这是你可以做的

$('#modal .update-title').change(function () {
var title = $('option:selected', this).prop('title'),
m = null; // or just m;
$(this).prop('title', title);

// For the question screen, after the initial set up
// changes move the title to the title input field.
if ($(this).data('propagate-title') === 'yes') {
m = this.id.match(/^modal_TempRowKey_(\d+)$/);
if (m) {
$("#modal_Title_" + m[1]).val(title);
}
}
});

关于javascript - 为什么在检查代码块中的变量定义时 jslint 出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12594291/

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