jQuery 台灣郵遞區號套件更新至 1.4:

  • 修改原始碼以符合 jslint.com 驗證
  • 修改參數名稱 areaName => districtName, zipName => zipcodeName, areaSel => districtSel, zipSel => zipcodeSel, zipReadonly => readonly
  • 修正當指定元素名稱時,若名稱內包含 [] 會發生錯誤的情形。
  • 加入 destroy, reset, serialize 等方法
  • 更新 Creative Commons License 至 3.0
$(function(){
  $('#zipcode-1').twzipcode();
  $('#zipcode-2').twzipcode({
    zipcodeSel: 830,
    readonly: false  
  });
  $('button').click(function(){
    var result = $('#' + $(this).val()).twzipcode($(this).text());
    if ('serialize' === $(this).text()) {
      alert(result);
    }
  });
});