window.location操作不正常
小弟在一html文件中写了如下函数:function select_group_route(index)
{
window.location = "pbx.cgi?src=site_callroute.html&select_group="+index;
alert(window.location);
}
目的是将select_roup变量值传到cgi中去。在cgi中用gcgiFetchString("select_group", group_name, sizeof(group_name))函数将select_group值取出。现在的问题是当index的值为“++++++”时传上来为空值,index为其它值时均正常。不知为何,请高手指点?