출처: http://www.w3schools.com/js/default.asp
<!DOCTYPE html>
<html>
<head>
<script>
function displayDate()
{
//document.getElementById("demo").innerHTML=Date();
document.getElementById("demo").innerHTML="Test";
}
</script>
</head>
<body>
<h1>My First JavaScript</h1>
<p id="demo">This is a paragraph.</p>
<button type="button" onclick="displayDate()">Display Date</button>
</body>
</html>
'Programming > Web' 카테고리의 다른 글
javascript로 php 호출하여 파일 업로드하기 (0) | 2012.10.01 |
---|---|
Eloquent JavaScript (Free ebook) (0) | 2012.08.10 |
[펌] 이미지 파일만 업로드하도록하는 자바스크립트 (0) | 2012.08.09 |