글 삭제

작성자 본인만 삭제할 수 있습니다

← 홈으로
익명 · 2023.08.15 · 조회 6,441
데이터 사용 시 리다이렉트 스크립트
<p>그누보드에 적용할 경우 아래의 코드를 head.php의 &lt;/head&gt; 바로 위 또는 관리자&gt;기본환경설정&gt;추가 script, css에 삽입, https://google.com은 원하는 링크로 변경하세요</p><p>[code]</p><p>&lt;script&gt;</p><p>// 네트워크 연결 상태 확인</p><p>function checkNetworkConnection() {</p><p>&nbsp; &nbsp; const connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection;</p><p>&nbsp; &nbsp; if (connection) {</p><p>&nbsp; &nbsp; &nbsp; &nbsp; const type = connection.effectiveType;</p><p>&nbsp; &nbsp; &nbsp; &nbsp; return type !== 'wifi';</p><p>&nbsp; &nbsp; }</p><p>&nbsp; &nbsp; return false;</p><p>}</p><p><br></p><p>// 리다이렉트 함수</p><p>function redirectToGoogle() {</p><p>&nbsp; &nbsp; window.location.href = 'https://www.google.com';</p><p>}</p><p><br></p><p>// 메인 함수</p><p>function main() {</p><p>&nbsp; &nbsp; if (checkNetworkConnection()) {</p><p>&nbsp; &nbsp; &nbsp; &nbsp; redirectToGoogle();</p><p>&nbsp; &nbsp; } else {</p><p>&nbsp; &nbsp; }</p><p>}</p><p><br></p><p>main();</p><div>&lt;/script&gt;</div><div>[/code]</div>
삭제된 게시글은 복구할 수 없습니다