1

ボタンがあり、ボタンを押したいのですが、Timepicker プラグインで時間を選択するための表示パネルになります。私はテキストボックスを押すことでそれを行うことができますが、今はボタンを押したいと思っています。これがプラグイン

http://trentrichardson.com/examples/timepicker/

ここに私のコード:

<input type="text" placeholder="Set Time" id="S-Time"/><button>Click to show</button>

<script>
$('#S-Time').timepicker();
</script>
4

2 に答える 2

4

これを試して:

$('#S-Time').timepicker();
$('button').click(function(){
    $('#S-Time').focus();
});
于 2013-06-18T07:19:53.007 に答える
2

試す

<input type="text" placeholder="Set Time" id="S-Time"/><button id="S-Time-Show">Click to show</button>

  $('#S-Time').datetimepicker();

  $('#S-Time-Show').click(function(){ //your button
    $('#S-Time').focus();
  });

デモ:プランカー

于 2013-06-18T07:17:18.177 に答える