Media Log

[noscript]에 해당되는 글 1

  1. noscript 태그 사용법 2008.06.30
noscript 태그 사용법

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
<title>무제 문서</title>
</head>
<body>
대한민국 만세<br />
<script type="text/javascript">
//<![CDATA[
 alert('자바스크립트 작동');
//]]>
</script>
<noscript>
 자바스크립트가 동작안한다.
</noscript>
</body>
</html>