0
<table class='dates'>
 <form method='post' action='' name='admin' id='form_admin'>
  <tr>
   <td>Start Time Of Election</td>
   <td>: <input type="text" id="stime" name='elect' placeholder='hh:mm' readonly="true"/></td>
  </tr>
  <tr>
   <td>End Time Of Election</td>
   <td>: <input type="text" id="etime" name='elect' placeholder='hh:mm' readonly="true" disabled='true'/></td>
  </tr>
  <tr>
   <td align='right'>
    <input id='enable' type='submit' name='date' value='Update' disabled='true'/>
   </td>
   <td align='right'>
    <input type='submit' name='cancel' value='Cancel'/>
   </td>
  </tr>
 </form>
</table>

<script type="text/javascript">
$(function(){
 $('#stime').timepicker({
    hourMin: 8,
    hourMax: 10,
    onSelect: function(){
     $('#etime').prop('disabled', false);
     $('#etime').timepicker({
      hourMin: 16,
      hourMax: 18,
      onSelect: function(){
        $('#enable').prop('disabled', false);
     }
    });
   }
  });
});
</script>

私のコードはjQuery UI、datepicker、time pickerで正常に動作し、終了時間を選択すると更新ボタンが有効になります。しかし、jQuery UIボタンを使用してボタンに見栄えを与えると、このコードで

$(function() {
    $( "input[type=submit], button" )
      .button()
      .click(function( event ) {
      });
});

スタイルは取得できますが、更新ボタンが有効になりません。

4

1 に答える 1

1

試してみてください

$("#enable").button( "enable" );

ここでjQueryドキュメントを参照してください

于 2013-08-12T09:58:31.927 に答える