有时候我们须要使用ajax提交去提交form的值,这样就须要使用serialize()去获取form的值。但这样获取的值假设有中文。会乱码。原因和解决方法例如以下:
原因:.serialize()自己主动调用了encodeURIComponent方法将数据编码了
解决方法:调用decodeURIComponent(XXX,true);将数据解码
如:
var data=$('#addf').serialize();
data= decodeURIComponent(data,true);