我正在研究Date-Range-Picker。它在跨度之间插入日期。
现在我的问题是如何在PHP中使用表单POST或GET方法获取插入值。
我尝试在span中使用名称字段,但它不起作用
我的HTML是:
<form method="POST" action="">
<div id="reportrange" style="background: #fff; cursor: pointer; padding: 5px 10px; border: 1px solid #ccc; border-radius: 4px;">
<i class="glyphicon glyphicon-calendar icon-large"></i>
<span></span> <b class="caret"></b>
</div>
</form>
答案 0 :(得分:1)
最简单的方法是使用隐藏的输入文本框来发布值。 每次使用jQuery更改范围时,您都可以填充输入文本框。