本文主要是介绍HTML写页面,实现两个日期的相减,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
HTML写页面,实现两个日期的相减
我实现的结果页面
其中代码为:
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>请假单</title><style>table{boder-spacing:10px 30px}</style>
</head>
<body>
<form action="Login" method="post"><table border="0" align="center" cellpadding="8"><tbody border="0" align="center"><!--请假类型--><tr height="50"><td height="36" width="100">请假类型</td><td width="88"><select id="type" name="reason" style="width: 163px; height: 36px" required="required"><option value="sickLeave">病假</option><option value="personalLeave">事假</option><option value="rest">倒休</option></select></td></tr><!--开始时间--><tr height="50"><td height="36" width="100">开始时间</td><td><input id="beginDate" type="date" name="BeginDate" style="width: 155px;height: 29px" required="required"/></td><td width="88"><select name="reason" style="width: 80px; height: 36px"><option value="morning">上午</option><option value="afternoon">下午</option></select><
这篇关于HTML写页面,实现两个日期的相减的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!