我可以像在PHP中一样在jQuery中内爆数组吗?
你可以用普通的JavaScript做到这一点,使用Array.prototype.join:
Array.prototype.join
arrayName.join(delimiter);
喜欢这个:
[1,2,3,4].join('; ')