មេរៀន JavaScript

មេរៀនទី ១ Introduction

JavaScript​: គឺជាភាសារមួយដែលធ្វើអោយ Web page របស់យើងមានលក្ខណ:ស្រស់ស្អាត និង Dynamic.ដោយវាមាន ជា Event ផ្សេងៗសំរាប់ធ្វើការជាមួយ Web Page។

ដើម្បីសរសេរcode របស់ JavaScript ត្រូវសរសេរ ក្នុង tag Script ដូចខាងក្រោម
<script>
document.write("Hello the world")
</script>

ចំណាំ
code របស់ javaScrip មិនបង្ហាញនៅលើ page ទេហើយdocument.write() ប្រើដើម្បីបង្ហាញអក្សរនៅលើ page។

Ex:


<!DOCTYPE html>
<html>
<body>

<p>
JavaScript can write directly into the HTML output stream:
</p>

<script>
document.write("<h1>This is a heading</h1>");
document.write("<p>This is a paragraph.</p>");
</script>

<p>
You can only use <strong>document.write</strong> in the HTML output.
If you use it after the document has loaded (e.g. in a function), the whole document will be overwritten.
</p>

</body>
</html>