📄 金字塔.html
字号:
<html>
<head>
<script language="javascript" type="text/javascript">
function ab(){
var str="☆";
for(var row=0;row<10;row++){
document.write("<center>");
for(var col=0;col<row;col++){
document.write(str);
}
document.write("</center>");
}
}
function as(){
var name=prompt("请输入姓名","张三");
document.write("你输入的姓名是: "+name);
}
function am(){
confirm("你真的确定了吗?")
}
</script>
</head>
<body>
<input type="button" value="姓名" onclick="am()"/>
<input type="button" value="图片" onclick="ab()"/>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -