慕斯卡7585644
2017-10-16 10:48
document.write("JS进阶篇");
alert("关注JS高级篇");
提示,跟输出文本
alert是弹窗警报,document是文本打印
alert会弹出对话框并只有确定,不是弹出2次是无限次
alerth会弹出一个对话框,document则直接在页面上显示
alert 是弹窗警示
document.write 是将内容输出到网页内容中
还有就是为什么上边的代码会alert两次啊?明明就只有一个alert
前者是打印展示,后者是弹窗展示
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>我们互动下</title>
<script type="text/javascript">
document.write("JS进阶篇");
alert("关注JS高级篇");
</script>
</head>
<body>
</body>
</html>
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题