日期:2014-05-16  浏览次数:20311 次

JS字符编码转为URI

?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >

<html>
	<head>
		<title>Anchor Properties</title>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
		<meta content="noindex, nofollow" name="robots">
		<script>
		alert(encodeURI("黄彪"));
		alert(decodeURI(encodeURI("黄彪")));
		
		</script>
	</head>
	<body>
	
	</body>
</html>

?

?

JavaScript中使用replace方法

var temp ="q%0D%0Aqdfa%0D%0Adsf";

%0D%0A替换为“回车换行符”,如果不用正则表达式就只能替换第一个,后面即使有匹配的也不能替换,因此想要替换所有的东西,只能选择正则表达式

temp = temp.replace(/%0D%0A/g,"\r\n");

alert(temp);

?