main.js 858 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. $(function () {
  2. 'use strict';
  3. var $distpicker = $('#distpicker');
  4. $distpicker.distpicker({
  5. province: '福建省',
  6. city: '厦门市',
  7. district: '思明区'
  8. });
  9. $('#reset').click(function () {
  10. $distpicker.distpicker('reset');
  11. });
  12. $('#reset-deep').click(function () {
  13. $distpicker.distpicker('reset', true);
  14. });
  15. $('#destroy').click(function () {
  16. $distpicker.distpicker('destroy');
  17. });
  18. $('#distpicker1').distpicker();
  19. $('#distpicker2').distpicker({
  20. province: '---- 所在省 ----',
  21. city: '---- 所在市 ----',
  22. district: '---- 所在区 ----'
  23. });
  24. $('#distpicker3').distpicker({
  25. province: '浙江省',
  26. city: '杭州市',
  27. district: '西湖区'
  28. });
  29. $('#distpicker4').distpicker({
  30. placeholder: false
  31. });
  32. $('#distpicker5').distpicker({
  33. autoSelect: false
  34. });
  35. });