states.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:3k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. // some data used in the examples
  8. Ext.namespace('Ext.exampledata');
  9. Ext.exampledata.states = [
  10.         ['AL', 'Alabama', 'The Heart of Dixie'],
  11.         ['AK', 'Alaska', 'The Land of the Midnight Sun'],
  12.         ['AZ', 'Arizona', 'The Grand Canyon State'],
  13.         ['AR', 'Arkansas', 'The Natural State'],
  14.         ['CA', 'California', 'The Golden State'],
  15.         ['CO', 'Colorado', 'The Mountain State'],
  16.         ['CT', 'Connecticut', 'The Constitution State'],
  17.         ['DE', 'Delaware', 'The First State'],
  18.         ['DC', 'District of Columbia', "The Nation's Capital"],
  19.         ['FL', 'Florida', 'The Sunshine State'],
  20.         ['GA', 'Georgia', 'The Peach State'],
  21.         ['HI', 'Hawaii', 'The Aloha State'],
  22.         ['ID', 'Idaho', 'Famous Potatoes'],
  23.         ['IL', 'Illinois', 'The Prairie State'],
  24.         ['IN', 'Indiana', 'The Hospitality State'],
  25.         ['IA', 'Iowa', 'The Corn State'],
  26.         ['KS', 'Kansas', 'The Sunflower State'],
  27.         ['KY', 'Kentucky', 'The Bluegrass State'],
  28.         ['LA', 'Louisiana', 'The Bayou State'],
  29.         ['ME', 'Maine', 'The Pine Tree State'],
  30.         ['MD', 'Maryland', 'Chesapeake State'],
  31.         ['MA', 'Massachusetts', 'The Spirit of America'],
  32.         ['MI', 'Michigan', 'Great Lakes State'],
  33.         ['MN', 'Minnesota', 'North Star State'],
  34.         ['MS', 'Mississippi', 'Magnolia State'],
  35.         ['MO', 'Missouri', 'Show Me State'],
  36.         ['MT', 'Montana', 'Big Sky Country'],
  37.         ['NE', 'Nebraska', 'Beef State'],
  38.         ['NV', 'Nevada', 'Silver State'],
  39.         ['NH', 'New Hampshire', 'Granite State'],
  40.         ['NJ', 'New Jersey', 'Garden State'],
  41.         ['NM', 'New Mexico', 'Land of Enchantment'],
  42.         ['NY', 'New York', 'Empire State'],
  43.         ['NC', 'North Carolina', 'First in Freedom'],
  44.         ['ND', 'North Dakota', 'Peace Garden State'],
  45.         ['OH', 'Ohio', 'The Heart of it All'],
  46.         ['OK', 'Oklahoma', 'Oklahoma is OK'],
  47.         ['OR', 'Oregon', 'Pacific Wonderland'],
  48.         ['PA', 'Pennsylvania', 'Keystone State'],
  49.         ['RI', 'Rhode Island', 'Ocean State'],
  50.         ['SC', 'South Carolina', 'Nothing Could be Finer'],
  51.         ['SD', 'South Dakota', 'Great Faces, Great Places'],
  52.         ['TN', 'Tennessee', 'Volunteer State'],
  53.         ['TX', 'Texas', 'Lone Star State'],
  54.         ['UT', 'Utah', 'Salt Lake State'],
  55.         ['VT', 'Vermont', 'Green Mountain State'],
  56.         ['VA', 'Virginia', 'Mother of States'],
  57.         ['WA', 'Washington', 'Green Tree State'],
  58.         ['WV', 'West Virginia', 'Mountain State'],
  59.         ['WI', 'Wisconsin', "America's Dairyland"],
  60.         ['WY', 'Wyoming', 'Like No Place on Earth']
  61.     ];