Jquery autocompletebox并不总是有效

时间:2018-06-05 14:16:22

标签: javascript c# jquery asp.net-mvc autocompletebox

我在模态窗口中遇到了jquery自动完成框的问题。我试着解释一下情况 尽可能清楚。如果您有任何疑问,请告诉我。

我有一个包含所有字段的屏幕,它是主要记录。我还有一系列子记录。我希望用户将信息添加到子记录中,并使用子记录的模式对话框。子记录中的一个字段是字段" Currency"。此字段应为自动完成框。 这个问题很简单但是在2天后我仍然不知道如何解决它。用户第一次按下添加按钮时,模态窗口将完美打开。自动完成框也像魅力一样。但是当用户保存第一个孩子并想通过按添加按钮添加秒时,模态窗口再次打开。但后来我得到错误" Uncaught TypeError:$(...)。autocomplete不是一个函数" 我无法找到为什么第一次一切都很好但是为什么第二次弹出此错误。

代码:

打开模态窗口:

<a href="#theModal" class="nav-link btn btn-info float-right" data- 
remote="/Specification/_AddSpecification" data-toggle="modal" data- 
backdrop="static" data-target="#theModal"> Nieuwe specificatie</a>

对于autocompletebox(我使用了一个类)

<script>
        $(document).ready(function () {
            $(document).on('focus',
                '.CurrencySelect',
                function () {
                    $(this).autocomplete({
                        source: function (request, response) {
                            $.ajax({
                                url: "/Currency/searchCurrencies",
                                type: "POST",
                                dataType: "json",
                                data: { searchValue: request.term },
                                success: function (data) {
                                    //alert(JSON.stringify(data));
                                    response($.map(data,
                                        function (item) {
                                            return { label: item.currency.Name, value: item.currency.Id };
                                        }));
                                }
                            });
                        },

                        select: function (event, ui) {
                            //alert(this.id);
                            var idField = this.id.replace('String', '');
                            //alert(idField);
                            $("input[name=" + idField + "]").val(ui.item.value);
                            $("input[name=" + this.id + "]").val(ui.item.label);

                            // retrieve the exchange rate from the selected currency for the specified declarationDate.
                            $.ajax({
                                url: "/Currency/getExchangeRate",
                                type: "POST",
                                dataType: "json",
                                data: {
                                    currencyId: ui.item.value,
                                    date: $("#date").val()
                                },
                                success: function (data) {
                                    //alert(JSON.stringify(data));

                                    // Check if status = success
                                    if (data.status === "success") {

                                        // check if statusmessage = null
                                        if (data.statusmessage == null) {
                                            // Disablen van het veld ExchangeRate.
                                            $("#ExchangeRateReadOnly").attr("disabled", "disabled");

                                            // Vullen van het veld ExchangeRate via een variabele.
                                            var er = data.Value;
                                            $("#ExchangeRateReadOnly").val(er.toString().replace(/\./g, ','));
                                            $("#ExchangeRate").val(er.toString().replace(/\./g, ','));
                                            convertCurrencyToEuro();

                                        } else if (data.statusmessage === "Exchangerate unknown") {
                                            alert(
                                                "Voor de geselecteerde valuta is geen geldige koers bekend. U dient deze zelf op te voeren.");
                                            $('#ExchangeRateReadOnly').prop("disabled", false);
                                            convertCurrencyToEuro();

                                        } else if (data.statusmessage === "No exchangerate needed") {
                                            alert("Er is geen koers nodig voor de geselecteerde valuta.");

                                            $("#ExchangeRateReadOnly").attr("disabled", "disabled");
                                            convertCurrencyToEuro();
                                        } else if (data.statusmessage === "Invalid currency code") {
                                            alert("Er is geen geldige valuta geselecteerd.");
                                            convertCurrencyToEuro();
                                        }
                                    }
                                }
                            });

                            return false;
                        }
                    });
                });
        });
    </script>

我希望有人可以帮我解决这个问题。

请指教,

凯文

1 个答案:

答案 0 :(得分:0)

我刚刚解决了这个问题。多么愚蠢,jquery加载了两次。一旦进入_layout页面,一次进入父子记录本身的页面。 从parend-child页面删除后,一切似乎都像魅力一样。

感谢您的帮助!