|
|

楼主 |
发表于 2016-3-11 00:35:01
|
显示全部楼层
Screenshot.png
(26.55 KB, 下载次数: 0)
- <html>
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8" />
- <title>商品价格和扣率计算器</title>
- <body>
- <form>
- <fieldset>
- <legend>计算供货价格</legend>
- 进货价格:<input type="text" />
- 增长扣率:<input type="text" />
- 供货价格:<input type="text" />
- <button type="button">计算</button>
- </fieldset>
- </form>
- <p>供货价格=进货价格÷(100-供货扣率%)</p>
- <form>
- <fieldset>
- <legend>计算进货价格</legend>
- 供货价格:<input type="text" />
- 增长扣率:<input type="text" />
- 进货价格:<input type="text" />
- <button type="button">计算</button>
- </fieldset>
- </form>
- <p>进货价格=供货价格x(100-供货扣率%)</p>
- </body>
- </head>
- </html>
复制代码
gong.html.zip
(462 Bytes, 下载次数: 843)
|
|