JQuery 中 取得 string , 用 .val()建立正则表达式 只需用 new RegExp() , 例子 : var email = new RegExp('^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$');比对用 .test() , 例子 : test_string = "abc@def.com";if ( email.test( test_string ) ) { alert('match!'); }