JS/JavaScript

[JS] 01. Running code

밍글링글링 2017. 8. 28.
728x90

01_RunningCode.html

<!DOCTYPE html>
<html lang="ko">
<head>
<title>javaScript</title>
<meta charset="utf-8">
<!-- Code is written in a .js file, included via the script tag src attribute -->
<script src="/path/to/example.js"></script>

<!-- Embed code directly on a web page using script tags. -->
<script>
    alert("Hello World");
</script>

</head>
<body>
<!-- inline code directly on HTML elements being clicked. -->
<a href="javascript:alert('Hello World');">Click Me!</a>
<button onClick="alert('Good Bye World');">Click Me Too!</button>

</body>
</html>
 

728x90

'JS > JavaScript' 카테고리의 다른 글

[JS] 05. Conditional_Code  (0) 2017.08.28
[JS] 04. Operator  (0) 2017.08.28
[JS] 03. Type  (0) 2017.08.28
[JS] 02. SyntaxBasic  (0) 2017.08.28
[JAVASCRIPT] JavaScript(자바스크립트) 이벤트  (0) 2017.08.01

댓글