两段 javaScript 代码的逻辑比较:
#1
if(tagName.length < 3)
{
$(this).parent().addClass(‘active‘);
tagName.push($(this).text());
tagId.push($(this).attr(‘label-id‘));
} else {
Hnb.ui.showError("最多只能选择三个标签");
}
#2
if(tagName.length > 3)
{
Hnb.ui.showError("最多只能选择三个标签");
} else {
$(this).parent().addClass(‘active‘);
tagName.push($(this).text());
tagId.push($(this).attr(‘label-id‘));
}
时间: 2024-11-05 16:07:40