url_中文_竹林仙_转转转

//----------------------------------------------

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Insert title here</title>
</head>
<body>


<a href="#" onclick="javascript:location.href=encodeURI(encodeURI('2.jsp?name=当当'))">123</a>
<a href="#" onclick="javascript:location.href=encodeURI(encodeURI('2.jsp?name=当当'))">456</a>

</body>
</html>

 

//----------------------------------------------

 

<%@ page language="java" import="java.net.*" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Insert title here</title>
</head>
<body>
<%
  String name = request.getParameter("name");
  String n = URLDecoder.decode(name,"UTF-8");
  out.println(n);

%>
</body>
</html>

 

//----------------------------------------------

 

你可能感兴趣的:(JavaScript,html,jsp,.net)