html-判断row中xx属性是否存在及取值

if (row.getAttribute("custHomePhone") == null || row.attributes["custHomePhone"].value == '')
       var custHomePhone = '未填写';
else
       var custHomePhone = decodeCellValue(row.attributes["custHomePhone"].value);

getAttribute:使用row的getAttribute方法,判断是否存在“custHomePhone”属性,如果不存在,则赋其他值。

如果不判断,直接取row的value,将会得到下面的错误提示。

VM101:25 Uncaught TypeError: Cannot read property 'value' of undefined

你可能感兴趣的:(html,row,attribute)