我需要使用百分比提交代码,但jQuery会继续保留它:
jQuery.post( '链接',{ '内容': '%74%65%73%74%69%6E%67'});
必须像这样发送:
%74%65%73%74%69%6E%67
但是这样发送:
测试
答案 0 :(得分:0)
您需要使用encodeURIComponent(..)
来正确转义百分位字符。
jQuery.post('LINK',{'content':encodeURIComponent('%74%65%73%74%69%6E%67')})