js Chinese transcoding and decoding

转码
	encodeURIComponent('xx')	转码一部分
	encodeURI('xx')				转码整个URI
	
解码
	decodeURIComponent('xx')	解码一部分
	decodeURI('xx')				解码整个URI

Guess you like

Origin blog.csdn.net/weixin_43294560/article/details/114850195