1

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>
4

1 に答える 1