前臺表格數字轉字段

//將字段的值切割成數組    helpTypeArray數組

var helpTypeArray = value.split(",");get

    var helpType = "";it

//i小於數組的長度
    for(var i=0; i<helpTypeArray.length; i++) {
        if(helpType != "") {
            helpType += ",";
        }
//         helpTypeArray[i]獲取數組中的值,在方法getTableColumnValueByDict($("#helpTypeDataListJson").val(), 中查詢出對應的值賦值給helpTypeList

helpType += getTableColumnValueByDict($("#helpTypeDataListJson").val(), helpTypeArray[i]);
    }
    return helpType;方法

相關文章
相關標籤/搜索