Method 1: (Form submission in disguise)
Linkredwin = function (a, B, c, d, e, f, g ){
VaR formredwin = Document. createelement ("form ");
Formredwin. method = 'post ';
Document. Body. appendchild (formredwin );
Formredwin. Action = "http://www.A.com/A.wiki? A ="
+ Encodeuri (A) + "& B ="
+ Encodeuricomponent (B)
+ "& C ="
+ Encodeuri (c) + "& D ="
+ Encodeuri (d) + "& E ="
+ Encodeuri (e) + "& F ="
+ Encodeuri (f)
+ "& G =" + encodeuri (g );
Formredwin. Submit ();
Formredwin. parentnode. removechild (formredwin );
}
Method 2:
1. In the + URL, the plus sign indicates space % 2B
2. the space in the space URL can be + or encoded as % 20
3./separate directories and subdirectories % 2f
4 .? Separate the actual URL and parameter % 3f
5.% specify special characters % 25
6. # indicates bookmarks % 23
7. & separator between parameters specified in URL % 26
8. = value of the specified parameter in the URL % 3d