복붙노트

[HTML] 어떻게 다른 드롭 다운에서 선택에 따라 드롭 다운 목록에 동적으로 채우기 옵션?

HTML

어떻게 다른 드롭 다운에서 선택에 따라 드롭 다운 목록에 동적으로 채우기 옵션?

해결법


  1. 1.당신은 AJAX를 사용합니다.

    당신은 AJAX를 사용합니다.

    jQuery로 매우 간단합니다 :

    $('#select1').change(function(){
    $.ajax({
       //Send to php script category id. This script returns all subcategories
       $.ajax({
          type: "POST",
          url: location.href,
          data: data,
          success : function (data)
          {   
             // Your return categories in data
             // Append list options to select2
          } 
    });
    });
    
  2. from https://stackoverflow.com/questions/3912302/how-to-dynamically-populate-options-on-dropdown-lists-based-on-selection-in-anot by cc-by-sa and MIT license