防止特定值的预先输入

时间:2018-02-06 06:41:21

标签: javascript jquery

我有一个适用于所有用户的公共国家/地区列表。但我想阻止每个用户的所在国家/地区进行预先输入。 这是我的javascript函数。

  $(function () {
        $('#country_field.typeahead').typeahead(null, {
              name: 'countries',
              source: countries_ta,
              display: 'name',
              limit: 6,
              templates: {
                  suggestion: suggestions_html,
                  pending: pending_html,
                  notFound: notFound_html
              }
        });

        $("#country_field").keyup(function (e) {
            $("#fg_country_wizard").removeClass("has-error");
            if (e.keyCode == 13) {
                var countryName = $(this).val();
                appendCountry(countryName);
                $('#country_field.typeahead').typeahead('close');
                $(this).val("")
            }
        });

    });

我可以通过以下方式获取应该阻止变量的国家/地区。

var homeCountryDid = $('#hid_HomeCountryDid').val();

0 个答案:

没有答案