原因【.serialize()】自动调用了encodeURIComponent方法将数据编码了,jquery使用【serialize()】出现中文乱码的解决办法:调用【decodeURIComponent(XXX,true);】将数据解码。
本教程操作环境:windows7系统、jquery3.2.1版本、thinkpad t480电脑。
推荐:jquery视频教程
jquery使用serialize()出现中文乱码的解决办法:
原因:.serialize()
自动调用了encodeURIComponent方法将数据编码了
解决方法:调用decodeURIComponent(XXX,true);
将数据解码
例如:
var params = jQuery("#formId").serialize(); // http request parameters. params = decodeURIComponent(params,true);
相关学习推荐:js视频教程
Atas ialah kandungan terperinci jquery使用serialize()出现中文乱码怎么办. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!