は、それがボタンを続けるからのdisabled属性を削除します送信がクリックされたとき。これは私のビューjQueryが提出
<?php echo form_open('admin/requests/approve_request/'.$this->uri->segment(4)); ?>
<div class="form-group">
<label for="pending_reason">Note</label>
<textarea class="form-control" name="pending_reason"rows="6">
<?php echo set_value('pending_reason'); ?>
</textarea>
<?php echo form_error('pending_reason'); ?>
</div>
<button type="submit" class="btn btn-success" value="submit" id="submit" disabled>Submit</button>
</form>
<button type="button" class="btn btn-success" id="continue" disabled>Continue</button>
私JSが
<script>
$("#submit").click(function() {
$("#continue").removeAttr('disabled', true);
});
});
</script>
である
:しかし、問題は、それがページがそうもう一度ボタンを継続使用不可の状態にロールバックリフレッシュし送信ボタンをクリックしたときです
これは私のために完全には機能していません – turaco
これはPHPタグでも使用しているので、これもマークしてください。通常、送信をクリックすると、ページがリロードされません。または、このhttps://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_eventsに従って、フォームが受信されたサーバーからのイベントに反応することができます – DanteTheSmith
処理できませんクライアント側で? – turaco