到目前为止,这是我的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"
是否正确,如果是,请改为抓取倒数第三项。
const [lastItem] = arr.slice(-1)