Mysql
 sql >> Datenbank >  >> RDS >> Mysql

jquery Ajax-Aufruf zum Festlegen ausgewählter Optionen aus einer MySql-Tabelle

Sie können es versuchen

//json is the json you have recieved in the success handler

$("#engine").empty();
$.each( json, function( index, item ) {
           $("<option/>",{value:item,text:item}).appendTo("#engine");

        });

DEMO