实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p>Click the button to demonstrate line-breaks in a popup box.</p>
6
7
<button onclick="myFunction()">Try it</button>
8
9
<p id="demo"></p>
10
11
<script>
12
function myFunction()
13
{
14
alert("Hello\nHow are you?");
15
}
16
</script>
17
18
</body>
19
</html>