最佳答案
这是我到目前为止的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"
,如果是,则获取倒数第三个项目。