当前位置: 代码迷 >> Web前端 >> unicode空格字符串变换
  详细解决方案

unicode空格字符串变换

热度:376   发布时间:2012-10-29 10:03:53.0
unicode空格字符串转换

function filterSpace(str){
	str = escape(str);
	var txt = str.replace(/%A0/g, "%20");//将Unicode编码为A0的空格转换为20的space
	return unescape(txt);
}

  相关解决方案