1
0
mirror of https://github.com/gusaul/grpcox.git synced 2025-06-16 01:25:42 +00:00
grpcox/index/js/load-database.js
2021-09-28 23:58:46 +07:00

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>`);
});
});
})();