后台商品列表页,批量操作js里的变量是哪里来的

2016-07-07 15:00 来源:www.chinab4c.com 作者:ecshop专家

admin/templates/goods_list.htm里面下面的js代码
confirm(batch_trash_confirm);
confirm(batch_no_on_sale);
这些变量是哪里来的呢?


/**
* @param: bool ext 其他条件:用于转移分类
*/

function confirmSubmit(frm, ext)
{
if (frm.elements['type'].value == 'trash')
{
return confirm(batch_trash_confirm);
}
else if (frm.elements['type'].value == 'not_on_sale')
{
return confirm(batch_no_on_sale);
}
else if (frm.elements['type'].value == 'move_to')
{
ext = (ext == undefined) ? true : ext;
return ext && frm.elements['target_cat'].value != 0;
}
else if (frm.elements['type'].value == '')
{
return false;
}
else
{
return true;
}
}

回答:
在语言文件里面设置
然后页面开始的时候,有一个循环把这些js变量打印出来
你邮件查看源代码就知道了