1 つのテキスト ボックスと 2 つのボタンがあります。
button1
名前としてprev
、button2
として名前を付けnext
ます。textbox
が含まれていますcurrent date
。
If I click in next button the textbox will show the next date. If I click in prev button the textbox will show the previous date.
私を助けてください...
enter code here
<input type="text" id="txtDateFilter" readonly="readonly" runat="server" />
<div id="sfprevbtn" title="Prev" class="fbutton">
<span class="fprev"></span>
</div>
<div id="sfnextbtn" title="Next" class="fbutton">
<span class="fnext"></span>
</div>
<script type="text/javascript">
$('#sfprevbtn').click(function(e)
{
$('#txtDateFilter').val();
});
$('#sfnextbtn').click(function(e)
{
$('#txtDateFilter').val();
});
</script>