提交 34842789 编写于 作者: D devil_gong

商品规格操作优化

上级 ccbf4f39
......@@ -245,7 +245,10 @@ $(function()
$('ul.spec-images-list li.spec-images-items').each(function(k, v)
{
var value = $(this).find('input').val() || null;
if(value != null && data_old.indexOf(value) == -1)
if(value == null)
{
$(this).remove();
} else if(data_old.indexOf(value) == -1)
{
data_old.push(value);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册