JavaScript 编写第1个程序
提问人:刘团圆发布时间:2020-11-23
■知识点
在HTML页面中嵌入JavaScript脚本需要使用<script>标签,用户可以在<script>标签中直接编写JavaScript代码。
■设计过程
第1步,新建HTML文档,保存为test.html。
第2步,在<head>标签内插入一个<script>标签。
第3步,为<script〉标签设置 type="text/javascript"属性。
第4步,在<script〉标签内输入JavaScript 代码:document.write("<hl>Hi,JavaScript!</hl>");。
<script type="text/javascript">
document.write("<hl>Hi,JavaScript!</hl>");
</script>
在JavaScript脚本中,document表不网页文档对象,document.write()表示调用document 对象的 write()方法,在当前网页源代码中写入HTML字符串"<h1>Hi,JavaScript!</h1>”。
第5步,保存网页文档,在浏览器中预览,显示效果如图所示。
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>