例如

if ($("a").click(function () { window.location.href = "./prodList.html"}), $("a").addClass("active"), username) {
    ...此处省略一系列逻辑代码
}

逗号操作符  对它的每个操作数求值(从左到右),并返回最后一个操作数的值。

let x = 1;

x = (x++, x);

console.log(x);
// expected output: 2

x = (2, 3);

console.log(x);
// expected output: 3

展开:

if ($("a").click(function () { window.location.href = "./prodList.html"})

$("a").addClass("active")

if (username) {
...此处省略一系列逻辑代码
}

end

 

作者 admin

百度广告效果展示