[Learning]#22 JS: HTML DOM Fundamentals

Vida Lin
2 min readOct 10, 2021

What is the HTML DOM?

“The HTML DOM is a standard object model and programming interface for HTML. It defines:

  • The HTML elements as objects
  • The properties of all HTML elements
  • The methods to access all HTML elements
  • The events for all HTML elements
    In other words: The HTML DOM is a standard for how to get, change, add, or delete HTML elements.”

by W3C School

Further intro: click here.

Example

Before

After we click the Lucky Draw button

The way I coded it:

<!DOCTYPE html>
<html>
<head>
<title>JS - HTML DOM</title>
<script type="text/javascript">
function LuckyDraw() {
var spanObj=window.document.getElementById("reward");
/*
This syntax changes the content of an HTML element when it’s needed.
"window" can be omitted.
We name an id, reward, to revise the body easily.
spanObj is a tag Object. It is related with <span id="reward">pineapple cheese</span>.
*/


spanObj.innerHTML="lemon"; //innerHTML is a property for us to easily modify the content of an HTML element.
spanObj.style.color="green";
spanObj.style.fontFamily="Arial"; //When CSS transfers to JS, the second word should be written in capital letter.
spanObj.style.fontWeight="bold";
spanObj.style.display=none;
}

</script>
</head>
<body style="font-family:Arial">
<div>
Congratulations! You won a piece of <span id="reward">pineapple cheese</span> cake!
</div>
<button onclick="LuckyDraw();">Lucky Draw</button>
</body>
</html>

Music of Today: Lover Boy by Phum Viphurit

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Vida Lin
Vida Lin

Written by Vida Lin

PM, Relationship, Travel, or anything quirky but interesting.|Subscribe & buy Vida a drink @LikerLand, the bottom of each article. 在文章底下LikerLand訂閱、請Vida喝一杯飲料 ❤

No responses yet

Write a response