<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>注册</title>
{# 导入jQuery基础类库,才可以使用 $ #}
<script src="../static/js/jquery-1.12.4.min.js"></script>
</head>
<body>
{% for m in get_flashed_messages() %}
{{ m }}
{% endfor %}
<form action="" method="post">
用户名:<input type="text" name="user_name">
<br>
密码:<input type="text" name="pwd">
<br>
手机号:<input type="text" name="tel">
<br>
验证码: <input type="text" name="img_code">
<img id="img_code" src="/get_image" alt="验证码" οnclick="shuaxin()">
<br>
<button type="submit">注册</button>
</form>
<script>
function shuaxin() {
// 找到img控件,并改变控件的src属性
var url = '/get_image?' + Math.random()
$('#img_code').attr('src', url)
}
</script>
</body>
</html>
转载于:https://www.cnblogs.com/Jacky-WYQ/p/10915661.html