W3Schools.com
THE WORLD'S LARGEST WEB DEVELOPER SITE
TUTORIALS REFERENCES
Tutorials References
×

2021年11月15日月曜日

The Language for Programming Web Pages

LEARN JS JS REFERENCE

// Click the button to change the color of this paragraph

function myFunction() {
    var x;
    x = document.getElementById("demo");
    x.style.fontSize = "25px";
    x.style.color = "red";
}
Try it Yourself

0 件のコメント:

コメントを投稿