註冊

<!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="驗證碼" onclick="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>
相關文章
相關標籤/搜索