到目前为止,这是我的 JavaScript 代码:
var linkElement = document.getElementById("BackButton");
var loc_array = document.location.href.split('/');
var newT = document.createTextNode(unescape(capWords(loc_array[loc_array.length-2])));
linkElement.appendChild(newT);
目前它从 URL 中获取数组中倒数第二个项目。但是,我想检查数组中的最后一项"index.html"
,如果是,则改为获取倒数第三项。