http://www.runoob.com/jquery/jquery-ref-ajax.html http://jun1986.iteye.com/blog/1399242 下面是jQuery官方给出的完整的Ajax事件列表: ajaxStart (Global Event)This event is broadcast if an Ajax request is started and no other Ajax requests are currently running. beforeS…
Flask-wtf时Wtforms库的flask框架扩展,能够方便的处理Web表单 一.定义一个web表单 使用flask-wtf时,每个web表单都由一个继承自flask.ext.wtf.Form的类表示,每个字段都由类中的属性表示,每个字段可以附属多个验证函数 from flask.ext.wtf import Form from wtforms import StringField, PasswordField, SubmitField from wtforms.validators im…