获取数组中的最后一项
2022-08-29 21:57:00
以下是我到目前为止的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"