到目前为止,这是我的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
是否正确,如果是,请改为抓取倒数第三项。
为了防止从原始数组中删除最后一项,您可以使用
大多数浏览器(ES6)都受支持