“Stellen Sie die Optionen mit JQuery in Laravel Form Collective fest” Code-Antworten

Stellen Sie die Optionen mit JQuery in Laravel Form Collective fest

<script>
    $(document).ready(function() {

            //Make an Ajax request to a Laravel route
            //This will return the data that we can add to our Select element.
            $.ajax({
                url: 'YOUR URL GOES HERE',
                type: 'get',
                success: function(data){

                    //Log the data to the console so that
                    //you can get a better view of what the script is returning.
                    console.log(data);

                    $.each(data, function(key, value){
                        //Use the Option() constructor to create a new HTMLOptionElement.
                        var option = new Option(key, value);
                        //Convert the HTMLOptionElement into a JQuery object that can be used with the append method.
                        $(option).html(value);
                        //Append the option to our Select element.
                        $("#job").append(option);
                    });

                }
            });

        });
</script>
Nervous Narwhal

Stellen Sie die Optionen mit JQuery in Laravel Form Collective fest

//...
{!! Form::select('jobsList[]', [], null, ['id' => 'job', 'class' => 'form-control' 'multiple', 'style' => 'width: 60%; margin-top: 10px;', 'disabled'=>'disabled']) !!}
..//
Nervous Narwhal

Ähnliche Antworten wie “Stellen Sie die Optionen mit JQuery in Laravel Form Collective fest”

Fragen ähnlich wie “Stellen Sie die Optionen mit JQuery in Laravel Form Collective fest”

Weitere verwandte Antworten zu “Stellen Sie die Optionen mit JQuery in Laravel Form Collective fest” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen