$(document).ready(function(){ $("#Main_Form").on("change","#Country_Tel_Code",function(){ var country_code = $(this).val(); var fun = "",errorstr = ""; if(country_code == '886'){ fun = "checkCellphoneTrue"; errorstr = "請輸入正確手機號碼"; }else if(country_code == '86'){ fun = "checkCellphoneChina"; errorstr = "請輸入正確手機號碼"; }else{ fun = "checkNull"; errorstr = ""; } $("#Cellphone").attr('fun',fun).attr('errorstr',errorstr); // console.log(country_code); }); });