1.js使用正則表達式案例: <script> var str=」543535364565@qq.com」; var res=「/^\d*@(QQ|qq|136)\.(com|cn)$/」; var result=res.exec(str); alert(result); </script> 2.php使用正則表達式案例: $email_address =」543535364565@qq.com」; $pattern =「/^\d*@(QQ|qq|136)\.(com|cn)$/」; if ( preg_match( $pattern, $email_address ) ) { $reply = 「您輸入的電子郵件地址合法」; } else { $reply = 「您輸入的電子郵件地址不合法」; } echo $reply; 3.jquery正則表達式驗證: <script> var str=」543535364565@qq.com」; if (!str.match(/^\d*@(QQ|qq|136)\.(com|cn)$/)) { alert(「郵箱格式不正確」); return false; } return true; } </script>