* Task#3503

This commit is contained in:
滔哥
2017-12-07 13:55:01 +08:00
parent f13e402bb0
commit da38db6ef5
+5 -2
View File
@@ -1960,8 +1960,11 @@ $(document).ready(function()
{
if($(this).attr('checked'))
{
var checkedVal = parseInt($(this).val());
if(checkedVal != 0) checkeds = checkeds + checkedVal + ',';
if(!isNaN($(this).val()))
{
var checkedVal = parseInt($(this).val());
if(checkedVal != 0) checkeds = checkeds + checkedVal + ',';
}
}
})
if(checkeds != '') checkeds = checkeds.substring(0, checkeds.length - 1);