city-picker.data.js 787 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*!
  2. * Distpicker v1.3.2
  3. * https://github.com/tshi0912/city-picker
  4. *
  5. * Copyright (c) 2014-2019 Tao Shi
  6. * Released under the MIT license
  7. *
  8. * Date: 2021-12-01T11:49:57+08:00
  9. */
  10. (function (factory) {
  11. if (typeof define === 'function' && define.amd) {
  12. // AMD. Register as anonymous module.
  13. define('ChineseDistricts', [], factory);
  14. } else {
  15. // Browser globals.
  16. factory();
  17. }
  18. })(function () {
  19. var ChineseDistricts = {};
  20. $.ajax({
  21. url: 'area/get_data',
  22. async: false,
  23. dataType: 'json',
  24. success: function (data) {
  25. ChineseDistricts = data;
  26. }
  27. });
  28. if (typeof window !== 'undefined') {
  29. window.ChineseDistricts = ChineseDistricts;
  30. }
  31. return ChineseDistricts;
  32. });