mirror of
https://github.com/gusaul/grpcox.git
synced 2025-06-16 01:25:42 +00:00
10 lines
271 B
JavaScript
10 lines
271 B
JavaScript
(function () {
|
|
const el = $('#select-server-target');
|
|
|
|
$.get('database/database.json', function (response) {
|
|
$.each(response, function (index, value) {
|
|
el.append(`<option value='${value.ip}'>${value.name}</option>`);
|
|
});
|
|
});
|
|
|
|
})(); |