개요
코드
<script> // HTML 코드가 완전히 로드된 후 실행되도록 이벤트 리스너를 등록합니다. document.addEventListener("DOMContentLoaded", function() { // div#w20240312d228a02114f14 요소를 선택합니다. var originalDiv = document.querySelector("div#wdgid12345"); // div#w20240312d228a02114f14의 HTML 내용을 가져옵니다. var originalHTML = originalDiv.innerHTML; // depth-1 클래스를 가진 li 요소들을 선택합니다. var depthOneElements = document.querySelectorAll(".viewport-nav.mobile._menu_wrap"); // 각 li 요소에 대해 작업합니다. depthOneElements.forEach(function(element) { // li 요소의 마지막 자식 요소를 선택합니다. var lastChild = element.lastElementChild; // 새로운 HTML 코드를 생성합니다. var newHTML = '<div class="sns-box"><a href="https://www.instagram.com/eondcom/" target="_blank"><i aria-hidden="true" class="fab fa-instagram"> </i></a><a href="https://blog.naver.com" target="_blank"><i aria-hidden="true" class="ii ii-nblog"> </i></a><a href="https://www.youtube.com/" target="_blank"><i aria-hidden="true" class="ii ii-youtube"> </i></a><a href="https://www.tiktok.com/@studioolaa" target="_blank"><i aria-hidden="true" class="fab fa-tiktok"> </i></a><a href="https://www.instagram.com/eond_com/" target="_blank"><i aria-hidden="true" class="ii ii-instagram-rn"> </i></a></div>'; // 가져온 HTML 내용을 newHTML 변수에 담습니다. //var newHTML = originalHTML; // 올라 인스타 / 블로그 / 올라유튜브 / 틱톡 / 대표님인스타 // 새로운 HTML 코드를 마지막 자식 요소 뒤에 추가합니다. lastChild.insertAdjacentHTML('afterend', newHTML); }); }); //console.log('header'); </script> <style> .sns-box{ display:flex;display: flex; align-items: center; gap: 5px; margin: 10px; margin-top:150px; } .sns-box a{ display:flex;display: flex; align-items: center; justify-content:center; width:24px;height:24px; } </style>
정리
제목 | 날짜 | ||
---|---|---|---|
539 | [리눅스서버] 계정등록(adduser) 기능 및 옵션, 계정 변경(usermod) | 325 | 2017/10/28 |
538 | [유틸리티] [FreeCommander] 컬러 스키마 변경 | 327 | 2020/01/12 |
537 | HTML/CSS 스크롤바 숨기기 없애기 (스크롤 동작) | 328 | 2021/09/01 |
536 | [사이트관리] SEO 작업 | 328 | 2017/12/04 |
535 | [Nginx] [Nginx+Rewriterule] apache / nginx 에서 .php 생략하기 | 330 | 2017/05/30 |
534 | [브라우저] 유투브 공유하기 자동재생 설정(웨일, 크롬) | 332 | 2019/04/06 |
533 | [웹 제작] 검색 엔진과 매개변수 | 348 | 2015/08/25 |
532 | [윈도우서버] 오토셋 아파치 에러로그 확인하기 | 350 | 2020/02/14 |
531 | [Apm] autoset 500 Internal Server Error | 357 | 2018/12/04 |
530 | [사이트관리] 사이트 실시간 접속자 체크 스크립트 | 360 | 2017/04/19 |
529 | [PHP] phpmyadmin 서버 에러가 감지되었습니다. [1] | 372 | 2020/04/06 |
528 | [Nginx] Nginx 모니터링 툴 | 400 | 2017/10/23 |