PHP를 사용하여 JavaScript 활성화 감지
특정 시나리오에서는 웹 애플리케이션 내에서 JavaScript가 활성화되어 있는지 확인하는 것이 중요할 수 있습니다. PHP는 이 기능을 달성하기 위한 여러 가지 접근 방식을 제공합니다.
NOSCRIPT 요소를 사용한 솔루션
한 가지 간단한 옵션은
<code class="html"><html>
<head>
<noscript>
This page needs JavaScript activated to work.
<style>div { display:none; }</style>
</noscript>
</head>
<body>
<div>
my content
</div>
</body>
</html></code>
로그인 후 복사
이 예에서
요소는 처음에 CSS를 사용하여 숨겨집니다. JavaScript가 활성화된 경우