js的输出
Posted 凯宾斯基
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js的输出相关的知识,希望对你有一定的参考价值。
- 使用 window.alert() 写入警告框
- 使用 document.write() 写入 html 输出
- 使用 innerHTML 写入 HTML 元素
- 使用 console.log() 写入浏览器控制台
innerHTML要配合 document.getElementById(id) 方法使用
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = 5 + 6;
</script>
按钮触发见: https://www.cnblogs.com/kaibindirver/p/9781670.html
如果是点击自身触发用this
<h1 onclick="this.innerHTML=\'谢谢!\'">请点击此文本!</h1>
https://www.w3school.com.cn/js/js_htmldom_events.asp
自身传入函数触发
https://www.w3school.com.cn/tiy/t.asp?f=js_dom_event_onclick_2
其他参考 https://www.w3school.com.cn/js/js_output.asp
以上是关于js的输出的主要内容,如果未能解决你的问题,请参考以下文章