摘要:
// 下拉框发送改变后 获取选择的信息 <div class="form-group"> <label class="col-sm-3 control-label">地址:</label> <div class="col-sm-6"> <select name="address" class="ch 阅读全文
摘要:
timestampToTime(10位时间戳) function timestampToTime(timestamp) { var date = new Date(timestamp * 1000); Y = date.getFullYear() + '-'; M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth(... 阅读全文