赞
踩
首先要引入jquery文件,可以引入在线的,也可以下载离线的 添加进自己staticfiles
这里演示的是添加离线的
<script src={% static 'jquery/jquery.min.js' %}></script>
注意这句是要添加到自己写的jquery脚本前边
然后写一个简单的表单
- <form method="post" id="formadd">
- {% csrf_token %}
- <label for="id_name">用户名</label>
- <input type="text" id="id_name"/>
- <label for = "id_password">密码</label>
- <input type="password" id="id_password"/>
- <button type="submit" id="submit" >提交</button>
- </form>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。