gpt4 book ai didi

javascript - 在 JavaScript 中使用 if 条件

转载 作者:行者123 更新时间:2023-12-02 21:40:26 25 4
gpt4 key购买 nike

我想使用if在 JavaScript 中。我用了if条件正如我下面提到的。但不正确。为什么错了。我该如何解决这个问题?

var fixHelperModified = function(e, tr) {
var $originals = tr.children();
var $helper = tr.clone();
$helper.children().each(function(index) {
$(this).width($originals.eq(index).width())
});
return $helper;
},

if (window.confirm("Do you really want to update the order?")) {
updateIndex = function(e, ui) {
$('td.index', ui.item.parent()).each(function(i) {
$(this).html(i + 1);
});
};
}

$("#table tbody").sortable({
helper: fixHelperModified,
stop: updateIndex
}).disableSelection();

最佳答案

您必须删除第 8 行中的 ','

关于javascript - 在 JavaScript 中使用 if 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60378157/

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