削除しようとしている不要な大量の下位ブックマークがあります。 forループは最後の下位レベルのブックマークのみを返すので、私は理由を知りません。javacriptを使用してpdfのブックマークを削除するためのループを作成する
// Calling the bookmarks
var bm = this.bookmarkRoot;
//getting the length of the lower level bookmarks
var bmlength = bm.children[0].children[0].children.length;
// attempting to gather all the bookmarks to delete
for (var i=0; i < bmlength; i++){
var removeMe=bm.children[0].children[0].children[i];
}
removeMe.remove()
<!-- Please replace me with example HTML -->
、あなたのコードに感謝 –