📅  最后修改于: 2022-03-11 15:01:21.462000             🧑  作者: Mango
// If you want to target the parent by tagName you could use .closest(selector); like :
var x = document.getElementById("myLI").closest('section');
// NOTE : Take a look to the Browser compatibility section.