本帖最后由 biguosong 于 2014-04-08 18:36:07 编辑

解决方案 »

  1.   

     return '<input type="button" value="未缴费" onclick="alert(' + a + ') ;">';
    这一句,改为:
     return '<input type="button" value="未缴费" onclick="alert(\"' + a + '\") ;">';
      

  2.   

    return '<input type="button" value="未缴费" onclick="alert(\''+a+'\');" />' ;
      

  3.   

    你可以把row对象输出 看一下这个对象是否有EW_Hhyhth属性以及该属性对应的值是否为undefined
      

  4.   

    return '<input type="button" value="未缴费" onclick="alert(\'' + a + '\');">';