firefox和IE在一个逗号上的差别

用 YUI ,搞了个datatable的页面,firefox没有问题 ,但是 IE却总是报一个 undefined的错误 。
后来查到下边帖子的错误跟我相同 。FT。我说呢,IE一直Datatable可以显示的 。现在怎么不行了

http://www.nabble.com/YUI-Library-Examples:-DataTable-Control-(beta):-Progressive-Enhancement-td15367359.html

Don't put that last comma in the column definitions and fields arrays.

Instead of ignoring it, IE assumes an extra undefined element in the array,
after the comma, so it reports the length of the array one element longer
than it should, making many loops fail.

Satyam

具体意思就是,像下边这么定义一个数组 ,因为
mysql_datadir之后有个comma,IE就会认为 后边还有一个元素 ,Firefox则不会这样认为 ,从而导致 undefined的错误。
var ds_fields=[
'hostname',
'ip',
'mysql_version',
'mysql_long_query_time',
'mysql_innodb_buffer_pool_size',
'mysql_log_bin',
'mysql_log_slow_queries',
'mysql_innodb_log_file_size',
'mysql_innodb_log_files_in_group',
'mysql_datadir',
];
请使用浏览器的分享功能分享到微信等