JS/JavaScript

[JS] 01. Running code

밍글링글링 2017. 8. 28. 13:32
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