06 2018 档案

摘要:1. 内容回顾 1. 基础必会三件套 from django.shortcuts import HttpResponse, render, redirect - HttpResponse("响应体内容") - render(request, "login.html",{“k”: "v"}) --> 阅读全文
posted @ 2018-06-13 20:40 afeng2017 阅读(82) 评论(0) 推荐(0) 编辑
摘要:一、time与datetime模块 time: print(time.time()) # 时间戳:1487130156.419527 print(time.strftime("%Y-%m-%d %X")) #格式化的时间字符串:'2017-02-15 11:40:53' print(time.loc 阅读全文
posted @ 2018-06-11 17:07 afeng2017 阅读(87) 评论(0) 推荐(0) 编辑
摘要:事件 1、常用事件: click(function(){...}) 当点击时 hover(function(){...}) 当鼠标移动到上面时 blur(function(){...}) 当光标消失时 focus(function(){...}) 当光标出现时 change(function(){. 阅读全文
posted @ 2018-06-06 18:29 afeng2017 阅读(198) 评论(0) 推荐(0) 编辑