"미디어위키:Common.js"의 두 판 사이의 차이
(새 문서: →이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다.: const sections = document.querySelectorAll(".section"); sections.forEach((el, index) => { el.onload = () => { el.attr('id', 'section'+index); } });) |
|||
3번째 줄: | 3번째 줄: | ||
const sections = document.querySelectorAll(".section"); | const sections = document.querySelectorAll(".section"); | ||
sections.forEach((el, index) => { | if(sections != null){ | ||
if(sections.length > 0){ | |||
sections.forEach((el, index) => { | |||
el.onload = () => { | |||
el.attr('id', 'section'+index); | |||
} | |||
}); | |||
} | } | ||
} | } |
2022년 7월 15일 (금) 17:42 판
/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */ const sections = document.querySelectorAll(".section"); if(sections != null){ if(sections.length > 0){ sections.forEach((el, index) => { el.onload = () => { el.attr('id', 'section'+index); } }); } }