如何通过javascript获取表格中的所有输入日期格式?

我创建了一个带有日期输入的 html 表:


<table id="myTable">

    <tr>

        <td><input name="start" type="date" value= ""/> ~ <input name="end" type="date" value=""/></td>

    </tr>

    <tr>

        <td><input name="start" type="date" value= ""/> ~ <input name="end" type="date" value=""/></td>

    </tr>

</table>

现在我想通过 javascript 获取所有输入值到字符串,如下所示:


2019-06-01~2019-06-02,2019-06-03~2019-06-04

我刚开始使用 javascript,有人可以帮助我吗?很感谢!


米琪卡哇伊
浏览 127回答 2
2回答

波斯汪

您可以使用它,日期数组将包含您页面的所有日期输入$('input[type="date"]').on('input',function(){&nbsp; &nbsp; let dates = [];&nbsp; &nbsp; $.each($('input[type="date"]'),function(){&nbsp; &nbsp; &nbsp; &nbsp; dates.push($this.val());&nbsp; &nbsp; }}因为那是一个事件你应该把它放在一个$(document).ready(function () {}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript