IE6下URL有中文的解决方案

在web开发中最头痛的问题就是各个浏览器不兼容,其中IE6更为严重,下面就说下在开发中遇到的一个小问题.
  <a href="admin/thresholds/index.htm?groupName=${group[0]}">编辑</a>

当groupName的值为中文时,在firefox和ie7下都是没有错误的,但在ie6下点击编辑时会没有反应。。。。。。
   我的解决方案是:
<a href="javascript:void(0);" onclick="update('${group[0]}');return false;">编辑</a>

js方法如下:
function update(groupName){
		groupName = encodeURI(groupName);
		document.allGroups.action="admin/thresholds/index.htm?groupName="+groupName;
		document.allGroups.submit();
	}

你可能感兴趣的:(java,Web,浏览器,firefox)