假如路径是这样的:www.domain.com/list/?menu=1 var locationUrl = location.search.substring(6); switch(locationUrl) { case "1": $(".zxdt").click(); break; case "2": $(".xwzx").click(); break; case "3": $(".mtzx&…
在asp.net中可以通过HttpRequest.ServerVariables 属性来获取“ Web 服务器变量的集合” HttpRequest.ServerVariables 的用法: HttpRequest.ServerVariables["Str_Variables"] Str_Variables可以是下面表格中的变量名称 也可以使用下面的方法来获取所有的web服务器变量的集合 for (int i = 0; i < Request.ServerVariables.Cou…