1 Star 0 Fork 48

孙仕悦/JavaScript基础

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
20231227 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
孙仕悦 提交于 2023-12-15 07:01 . add 20231227.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<style>
table{
margin: auto;
text-align: center;
height: 100px;
width: 500px;
border: solid;
}
h1{
text-align: center;
}
</style>
<script>
alert('请输入内容');
let a1=prompt('请输入银行卡总额: ');
let a2=prompt('请输入水费: ');
let a3=prompt('请输入电费: ');
let a4=prompt('请输入网费:');
let a5=a1-a2-a3-a4;
</script>
<table border="1" color="black">
<h1>10月份消费记录</h1>
<tr>
<td>银行卡总额</td>
<td>水费</td>
<td>电费</td>
<td>网费</td>
<td>余额</td>
</tr>
<tr>
<td><script>document.write(a1)</script></td>
<td><script>document.write(a2)</script></td>
<td><script>document.write(a3)</script></td>
<td><script>document.write(a4)</script></td>
<td><script>document.write(a5)</script></td>
</tr>
</table>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/sunshiyue/fundamentals-of-java-script.git
git@gitee.com:sunshiyue/fundamentals-of-java-script.git
sunshiyue
fundamentals-of-java-script
JavaScript基础
master

搜索帮助