心理

当前位置 /首页/完美生活/心理/列表

write和alert的输出有什么区别

write和alert的输出有什么区别

<!--

alert用来弹出一个对话框,而e会把文本写到文档中,然后通过网页来显示。

下面有例子。

-->

<html>

<body>

<script type="text/javascript">

alert("你好")

e("Hi")

</script>

</body>

都是输出的意思

e 输出不换行

eln输出信息并换行

</html>

TAG标签:alert 输出 write #