jQuery判断邮箱

<head>
<title></title>

<script src="jquery-1.9.1.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
var bool = false;
$('#Email').focus(function () { if (bool == false) { $('#Email').val(''); } })
$('#Email').blur(function () {
if ($('#Email').val() == '') { $('#spEmail').text('邮箱不能为空'); $('#Email').focus(); }
else {
if (/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/.test($(this).val()) == false) { $('#spEmail').text('邮箱格式不正确'); }
else { $('#spEmail').text(''); $('#spEmail').append('<img alt="邮箱格式正确" src="images/onSuccess.gif" />'); bool = true; }}})

})
</script>

</head>
<body>
<input id="Email" type="text" value="请输入邮箱" /><span id="spEmail"></span><br />
<input id="Text2" type="text" />
</body>
</html>

你可能感兴趣的:(jquery)