简体   繁体   中英

document.title and spaces in a string

I'm using a breadcrumbs.js file.

function breadcrumbs(){
sURL = new String;
bits = new Object;
var x = 0;
var stop = 0;
var output = "";
sURL = location.href;
sURL = sURL.slice(8,sURL.length);
chunkStart = sURL.indexOf("/");
sURL = sURL.slice(chunkStart+1,sURL.length)
while(!stop){
    chunkStart = sURL.indexOf("/");
    if (chunkStart != -1){
        bits[x] = sURL.slice(0,chunkStart)
        sURL = sURL.slice(chunkStart+1,sURL.length);
    }else{
        stop = 1;
    }
    x++;
}
for(var i in bits){
    output += "<a href=\"";
    for(y=1;y<x-i;y++){
        output += "../";
    }
    output += bits[i] + "/\">" + bits[i] + "<a/a> &nbsp;|&nbsp; ";
}
document.write(output + document.title);
}

What it does is to traverse the folder structure and build it as a set of breadcrumbs. So for example:

/root
+ design-library
---+ foo
--------+ bar
------------+ baz name with space

And this would return as:

design-library | foo | bar | baz%20name%20with%20space | filename

How can I maintain the space in the file folder name, but return as:

design-library | foo | bar | baz name with space | filename

使用decodeURIComponent(str) ,它将%xx值转换回单个字符。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM