15-23.htm
来自「有关JAVASCRIPT的源代码教程」· HTM 代码 · 共 25 行
HTM
25 行
<html>
<head><title>使用getElementById()方法 </title></head>
<body id="body1">
<h1 id="head1">一级标题(H1标记)</h1>
<p id="para1">
段落文字(月有阴晴圆缺)
</p>
</body>
<script language="javascript">
var bodytag=document.getElementById("body1");
var h1tag=document.getElementById("head1");
var paratag = document.getElementById("para1");
h1tag.style.fontFamily="宋体";
h1tag.style.fontSize="32";
paratag.style.fontSize="28";
paratag.style.color="blue";
bodytag.style.backgroundColor="pink";
document.write(document.getElementById("body1").nodeName+"<br>");
document.write(document.getElementById("head1").nodeName+"<br>");
document.write(document.getElementById("para1").nodeName+"<br>");
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?