亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

驗(yàn)證郵箱是否合法

Original 2019-03-05 17:43:43 296
abstract:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Ajax-注冊(cè)驗(yàn)證</title> </head> <body> <p>郵箱: <input type=&
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Ajax-注冊(cè)驗(yàn)證</title>
</head>
<body>
<p>郵箱: <input type="text"></p>
<p>密碼: <input type="password"></p>
<p><button>提交</button></p>
</body>
<script type="text/javascript" src="js/jquery-3.3.1.js"></script>
<script type="text/javascript">
//當(dāng)失去焦點(diǎn)時(shí)進(jìn)行驗(yàn)證
$(':input').blur(function() {
$.ajax({
//請(qǐng)求
url: 'regsever.php',
//請(qǐng)求類型
type: 'GET',
//轉(zhuǎn)化為json格式
data: $('form:first').serializeArray(),
//回調(diào)
success: function(msg, status, xhr) {
// console.log(msg)
$('p span').empty()
$('p').append($(msg)).css('font-size', '1.5em')
}
})
})
$('button:first').click(function() {
alert("恭喜您:注冊(cè)成功!")
})
</script>
</html>


Correcting teacher:韋小寶Correction time:2019-03-06 09:14:13
Teacher's summary:ajax的驗(yàn)證還是蠻簡(jiǎn)單的 簡(jiǎn)單但是很重要 課后一定要多去練習(xí)哦

Release Notes

Popular Entries