- 해시태그 자바스크립트2025년 02월 03일
- TheStorybook
- 작성자
- 2025.02.03.:04
v.1 : 게시판이 붙을 경우 검색 안됨document.querySelectorAll(".content").forEach(content => {content.innerHTML = content.innerHTML.replace(/#([\w가-힣_]+)/g, function (match, tag) {return `<a href="?search=${tag}">${match}</a>`;});});v.2 : 글 본문에서 검색 안됨document.querySelectorAll(".content").forEach(content => { // 현재 페이지 URL에서 마지막 경로(게시판 ID) 가져오기 const pathParts = window.location.pathname.split("/").filter(Boolean); // 빈 값 제거 const boardId = pathParts.length > 0 ? pathParts[pathParts.length - 1] : ""; // 마지막 경로 값 (게시판 ID) console.log(boardId); // 변수명 수정 content.innerHTML = content.innerHTML.replace(/#([\w가-힣_]+)/g, function (match, tag) { if (boardId) { return `<a href="./${boardId}/?search_keyword=${tag}&search_target=title_content">${match}</a>`; } else { return `<a href="./?search_keyword=${tag}&search_target=title_content">${match}</a>`; } }); });
v.3
document.querySelectorAll(".content").forEach(content => { // 현재 페이지 URL에서 경로 가져오기 const pathParts = window.location.pathname.split("/").filter(Boolean); // 빈 값 제거 let boardId = pathParts.length > 0 ? pathParts[0] : ""; // 첫 번째 경로(게시판 ID) // 글 번호(두 번째 경로)가 있으면 제거 (ex: threads/471363 → threads/) if (pathParts.length > 1 && !isNaN(pathParts[1])) { boardId = pathParts[0]; // 첫 번째 경로만 남기기 } console.log("게시판 ID:", boardId); // 디버깅용 content.innerHTML = content.innerHTML.replace(/#([\w가-힣_]+)/g, function (match, tag) { if (boardId) { return `<a href="/${boardId}/?search_keyword=${tag}&search_target=title_content">${match}</a>`; } else { return `<a href="/?search_keyword=${tag}&search_target=title_content">${match}</a>`; } }); });
참조
https://codepen.io/nikolett_codes/pen/daWxea
https://xe1.xpressengine.com/?mid=download&package_id=22753681
https://xe1.xpressengine.com/index.php?mid=download&package_id=22753695
'XE(Rhymix) > 변수 응용' 카테고리의 다른 글
스크랩(threads) v1 (0) 2025.02.03 스크랩 ec_imin (0) 2025.02.03 라이믹스 XE 설치경로 확인 코드 (0) 2025.02.03 회원정보에 적힌 url 에서 https:// 혹은 http:// 를 자르고 도메인만 보여주는 코드입니다 (0) 2025.02.03 목록(리스트)화면 이미지 파일 출력 코 (0) 2025.02.02 다음글이전글이전 글이 없습니다.댓글
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)