// 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
// 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 件のコメント:
コメントを投稿