“HTML Onchange Call Funkcja JS” Kod odpowiedzi

HTML Onchange Call Funkcja JS

<select name="region_id" class="form-select" required onChange="getDistricts(this);">
                                <option value="">-----------</option>
                                @foreach($regions as $region)
                                    <option value="{{ $region->id }}" {{ old('region_id', '') == $region->id ? 'selected' : '' }}>{{ $region->name_ru }}</option>
                                @endforeach
                            </select>

<script>
        function getDistricts(region_id) {
            var value = region_id.value;
            $.ajax({
                url: '/api/region/getDistricts/' + value,
                type: "GET",
                dataType: "json",
                success: function (data) {
                    var html = '';
                    $.each(data, function (key, value) {
                        html += '<option value="' + value.id + '">' + value.name_ru + '</option>';
                    });
                    $('select[name="district_id"]').html(html);
                    $('select[name="district_id"]').removeAttr('disabled');
                }
            });
        }
    </script>
Shadow

HTML Onchange Call Funkcja JS

//Change the onchange to onChange="checkit(this); 
//and then something like the below in checkit

function checkit(selectObj)
{ 
  var idx = selectObj.selectedIndex;
  document.frm.Month.disabled = idx == 0;
}
Shadow

Odpowiedzi podobne do “HTML Onchange Call Funkcja JS”

Pytania podobne do “HTML Onchange Call Funkcja JS”

Więcej pokrewnych odpowiedzi na “HTML Onchange Call Funkcja JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu