欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JavaScript基本的输出和嵌入式写法教程

程序员文章站 2022-08-02 12:09:27
javascript 没有任何打印或者输出的函数。 在 html 中, javascript 通常用于操作 html 元素。 操作 html 元素 如需从 javas...

javascript 没有任何打印或者输出的函数。
在 html 中, javascript 通常用于操作 html 元素。
操作 html 元素
如需从 javascript 访问某个 html 元素,您可以使用 document.getelementbyid(id) 方法。
请使用 "id" 属性来标识 html 元素,并 innerhtml 来获取或插入元素内容:
实例

<!doctype html>
<html>
<body>

<h1>我的第一个 web 页面</h1>

<p id="demo">我的第一个段落</p>

<script>
document.getelementbyid("demo").innerhtml = "段落已修改。";
</script>

</body>
</html>

以上 javascript 语句(在 <script> 标签中)可以在 web 浏览器中执行:

  • document.getelementbyid("demo") 是使用 id 属性来查找 html 元素的 javascript 代码 。
  • innerhtml = "paragraph changed." 是用于修改元素的 html 内容(innerhtml)的 javascript 代码。

写到 html 文档
出于测试目的,您可以将javascript直接写在html 文档中:
实例

<!doctype html>
<html>
<body>

<h1>我的第一个 web 页面</h1>

<p>我的第一个段落。</p>

<script>
document.write(date());
</script>

</body>
</html>

请使用 document.write() 仅仅向文档输出写内容。
如果在文档已完成加载后执行 document.write,整个 html 页面将被覆盖。
实例

<!doctype html>
<html>
<body>

<h1>我的第一个 web 页面</h1>

<p>我的第一个段落。</p>

<button onclick="myfunction()">点我</button>

<script>
function myfunction() {
document.write(date());
}
</script>

</body>
</html>

写到控制台
如果您的浏览器支持调试,你可以使用 console.log() 方法在浏览器中显示 javascript 值。
浏览器中使用 f12 来启用调试模式, 在调试窗口中点击 "console" 菜单。
实例

<!doctype html>
<html>
<body>

<h1>我的第一个 web 页面</h1>

<script>
a = 5;
b = 6;
c = a + b;
console.log(c);
</script>

</body>
</html>