sql >> Base de Datos >  >> RDS >> Mysql

llamada jquery ajax para establecer opciones de selección de una tabla MySql

puedes probar

//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