“Cara mengatur fokus ke input teks pertama dalam modal bootstrap setelah ditampilkan” Kode Jawaban

Untuk fokus pada kotak teks saat pop-up bootstrap terbuka

$("#dialog-cancelReasonModal").on('shown.bs.modal', function () {
                $(this).find('#txtName').focus();
            });

•	ID of the bootstrap POP-UP = dialog-cancelReasonModal 
•	ID of the TextBox = 'txtName'
Light Leopard

Cara mengatur fokus ke input teks pertama dalam modal bootstrap setelah ditampilkan

$('#myModal').on('shown.bs.modal', function () {
    $('#textareaID').focus();
})  

/* My solutioin .. 
// focus on button close .. so when you press Enter key .. modal closes .. again comunicating with bs.modal only attainable by jq
			$(ids.id4).on(`shown.bs.modal`, function(){
				$(`#modal-diag1 button`).focus()
			})
  ==============================================================
  // check the following for 
  $("#dialog-cancelReasonModal").on('shown.bs.modal', function () {
                $(this).find('#txtName').focus();
            });

•	ID of the bootstrap POP-UP = dialog-cancelReasonModal 
•	ID of the TextBox = 'txtName'
ammer

Cara mengatur fokus ke input teks pertama dalam modal bootstrap setelah ditampilkan

<input value="" autofocus>
 // not tested yet
// https://stackoverflow.com/questions/15247849/how-to-set-focus-to-first-text-input-in-a-bootstrap-modal-after-shown
ammer

Jawaban yang mirip dengan “Cara mengatur fokus ke input teks pertama dalam modal bootstrap setelah ditampilkan”

Pertanyaan yang mirip dengan “Cara mengatur fokus ke input teks pertama dalam modal bootstrap setelah ditampilkan”

Lebih banyak jawaban terkait untuk “Cara mengatur fokus ke input teks pertama dalam modal bootstrap setelah ditampilkan” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya