//bailing    2007-6-1
function path_url()
{
    
var o = new Object;
    
//var arr = document.location.href.split(/\?http/);
    var arr = document.location.href.split(/\?/);
    
if(arr.length<2)
    {
        
return;
    }

    queryString 
= arr[1];
    arr2 
= queryString.split(/&/i);

    len 
= arr2.length;
    
for ( i=0; i<len ; i++ )
    {
        vitem 
= arr2[i].split(/=/i);
        
if(vitem.length==2)
        {
            o[vitem[
0]] = vitem[1];
        }
        
else
        {
            o[vitem[
0]] = "";
        }
    }
    
return o;
}
Posted on 2007-06-01 13:52  古代  阅读(333)  评论(0编辑  收藏  举报