<html>
<head>
<title>MyHtml2.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/htmlcharset=UTF-8">
<script>
/*
*@author Caoshun
*@计算 合计费用
*/
function countMethod(){
var num=document.getElementById("num").value
var unitPrice=document.getElementById("unitPrice").value
var freight=document.getElementById("freight").value
document.getElementById("result").value=parseFloat((num*unitPrice))+parseFloat(freight)
}
</script>
</head>
<body>
<table border="1" cellpadding="1" cellspacing="1" background="#red" style="text-align: center">
<tr><td colspan="5" align="center">简易购物车</td></tr>
<tr>
<td>商品名称</td>
<td>数量(件)</td>
<td>单价(美元)</td>
<td>运费(美元)</td>
<td><input type="button" value="合计" onclick="countMethod()"></td>
</tr>
<tr>
<td>跑跑道具</td>
<td><input type="text" size="6" id="num"></td>
<td><input type="text" size="6" id="unitPrice"></td>
<td><input type="text" size="6" id="freight"></td>
<td><input type="text" size="6" id="result"></td>
</tr>
</table>
</body>
</html>
这段是js代码,其中包含系统的 Date()函数,和数组的一些方法
Date()函数通过getFullYear()获得年份,getMonth()获得月份,getDate()获得日期,getHours()获取小时,getMinutes()获取分钟,getSecond()获取秒
formatNumber函数是格式化一下获取的值,比如时间为9:15:9会转换成09:15:09;其中有一个三目判断,条件?true是输出:false时输出
数组的map和join方法,写个小例子吧 [1,2,3].join(":") =>1:2:3。 [1,2,3].map(function(n){return n+10}) =>[11,12,13]
最后module.exports = {} 是导出这个对象,其他地方需要require引入这个文件
方法如下:1、首先我们在微信开发者编辑器打开app.js这个文件,直接复制就可以!
2、然后我们开始测试,我们首先点击微信开发者工具上面的,普通编译。
3、然后把勾选的勾选上,模式名称写上,这样才能下次模拟更新!
4、我们点击确定,后小程序开始重启,然后惠提示更新,我们的效果达到了!如果用户点击确定后,直接更新最新版,点取消下次启动强制更新,不在提示!