Я хочу отобразить результат запроса, поступающего из функции
<script src="~/Scripts/jquery-3.3.1.js"></script> <script> $('#Lsite').change(function () { var selectedCountry = $("#Lsite").val(); if (selectedCountry != null && selectedCountry != '') { $.getJSON('@Url.Action("Recherche")', { Code: selectedCountry }, function (result) { if (result != null && !jQuery.isEmptyObject(result)) { var result = {}; table.find('tr').each(function (index) { var $result = $(this).find('td'), Numero = $result.eq(1).text(), Nom = $result.eq(2).text(); Consigne= $result.eq(3).text(); }); } }); } }); </script>
Что я уже пробовал:
I want to display the result of a query coming from a function after choosing a value on a combobox