>>769-770
split(","); と split(/,/);は違うのですね(^^;。

これでは、
var dat = ",,,,,";
var dats = dat.split(/,/);
dats.length が 0 になります。


ありがとうございます。