~~~ /* * 验证座机号 */ var checkTel = function(tel) { var reg = /^(\d3,4|\d{3,4}-)?\d{7,8}$/; if (!reg.test(tel)) { return false; } return true; } ~~~