자바 스크립트의 주석처리 방법은 두가지가 있다.
1. 한줄 주석 : //
사용 예)
// 슬러쉬: 한 줄만 주석처리 할 경우 사용.
2. 전체 주석 : /* */
/* //주석시작
alert("hello javascript");
alert("1");
alert("2");
alert("3");
*/ //주석 끝
/*와 */ 사이에 있는 코드들은 실행되지 않는다.
1. Javascript
<script type="text/javascript">
<!--
document.getElementById("demo").innerHTML=Date();
//-->
</script>
<script type="text/javascript">
<!--HIDE
document.write("<FONT color=#333333>Now!</FONT>") // This is a comment
/* This is a comment */
//STOP HIDING-->
</SCRIPT>
◈ Using an External JavaScript
<head>
<script type="text/javascript" src="xxx.js"></script>
</head>
<head>
<script type="text/javascript" src="xxx.js" charset="utf-8"/></script>
</head>
◈ JavaScript in <head>
<head>
<script type="text/javascript">
function displayDate()
{
document.getElementById("demo").innerHTML=Date();
}
</script>
</head>
◈ JavaScript in <body>
<body>
<p id="demo">This is a paragraph.</p>
<script type="text/javascript">
document.getElementById("demo").innerHTML=Date();
</script>
</body>
// body에서 버튼 클릭, 링크로 head함수 호출
<head>
<script type="text/javascript">
function tost(){
alert("I am an alert box!");
}
</script>
</head>
<body>
<input type="button" name="btn01" value="버튼01" onclick="tost()" />
<a href="javascript:tost()" style="text-decoration:underline; color:#515151">클릭</a>
</body>
2. HTML
<!--This is a comment. Comments are not displayed in the browser-->
2. CSS
/*This is a comment*/
◈ External style sheet
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css" />
</head>
◈ Internal style sheet
<head>
<style type="text/css">
hr {color:sienna;}
p {margin-left:20px;}
body {background-image:url("images/back40.gif");}
</style>
</head>
◈ Inline style
<p style="color:sienna;margin-left:20px">This is a paragraph.</p>
4. XML
<!-- This is a comment -->
5. PHP
//This is a comment
/*
This is
a comment
block
*/
<div class="leftmenu">
<?php include("menu.php"); ?>
</div>
직장을 다니면서 투잡(알바/부업)으로 월급 많큼 수익을 얻고 싶으시다면 아래 접속하셔서 상담받아 보실 수 있습니다. (믿음의 재택부업회사)
'홈페이지제작 > Javascript' 카테고리의 다른 글
[자바스크립트] 변수에 대한 설명 1 (0) | 2017.09.08 |
---|---|
[자바스크립트] javaScript 경고,알림 창 띄우기 (0) | 2017.09.07 |
[자바스크립트] JavaScript 출력에 대하여 (0) | 2017.09.07 |
[자바스크립트] Java Script 필요성 (0) | 2017.09.07 |
자바스크립트 객제( image, history, location) (0) | 2017.07.25 |