Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

chamada jquery ajax para definir opções de seleção de uma tabela MySql


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