day55 Pyhton 前端Jquery07
昨日回顾:
表单,点击submit提交以后,服务端受到信息
import socket
import pymysql
from urllib.parse import unquote def run():
sock = socket.socket()
sock.bind(('127.0.0.1', 8081))
sock.listen(5)
''' 'GET /?username=alex&pwd=123 HTTP/1.1
Host: 127.0.0.1:8081
Connection: keep-alive
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
Referer: http://localhost:63342/01-lesson/%E9%9D%99%E6%80%81%E7%BD%91%E7%AB%99/index.html?_ijt=726h7dpjc8l6d6gqbjfmee6tor
Accept-Encoding: gzip, deflate, br
Accept-Language: zh-CN,zh;q=0.9
Cookie: csrftoken=B6UX45uX3HeZyEBYfT0RKStoBqOF72qMYTT432aoeAyGK6uUcAbfjmbmkiBXlDxY; sessionid=pqwpjn15zp78cioj0pjfruelqalbhbwh ' b'GET / HTTP/1.1
Host: 127.0.0.1:8080
Connection: keep-alive
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
Accept-Encoding: gzip, deflate, br
Accept-Language: zh-CN,zh;q=0.9
Cookie: csrftoken=mgGu1nqxXnaKpGHTzlmFYyqlXl2Rv1SymNNzriypOCIeYylosvpj4jAR1XO0ZuFr; sessionid=zah393kzpbu3aelh039oh9236ynndq98 '
''' while True:
conn, addr = sock.accept() # hang住
# 有人来链接了
# 获取用户发送的数据
data = conn.recv(8096)
# print(data)
data = str(data, encoding='utf-8') print('======', data)
headers, bodys = data.split('\r\n\r\n')
tem_list = headers.split('\r\n')
# 获取请求方式 url 和协议
method, url, protocal = tem_list[0].split(' ')
# 获取路由地址和?之后的内容
path, query = url.split('?') # 获取到用户名和密码
name = query.split('&')[0].split('=')[1]
pwd = query.split('&')[1].split('=')[1] # 将url编码转义成中文
name = unquote(name)
print('---------', name, pwd) # 写入数据库
conn1 = pymysql.connect(
host='127.0.0.1',
user='root',
password="",
database='d1',
port=3306,
charset='utf8'
)
cur = conn1.cursor(pymysql.cursors.DictCursor)
sql = 'insert into user value (%(username)s,%(password)s)'
cur.execute(sql, {"username": name, 'password': pwd}) conn1.commit()
conn.send(b'HTTP/1.1 200 OK\r\n\r\n') with open('index.html','rb') as f:
a = f.read()
conn.send(a) # conn.send(b'112113') conn.close() if __name__ == '__main__':
run()
今日内容
1.BOM
-window.open(url,target)
-location
href 跳转的网址
host 主机名,包括端口
hostname 主机名
pathname url 中的路径部分
protocol 协议 一般是http.https
search 查询字符串
reload() 重载页面 全局刷新
-history
history.go(-1) 后端一步
-XMLHttpRequest
//两秒之后打开百度
setTimeout(function () { // window.open('http://www.baidu.com','_self');
/*
*
* host 主机名,包括端口 hostname 主机名 pathname url中的路径部分 protocol 协议 一般是http、https search 查询字符串
*
* */
console.log(location.host);//localhost:63342
console.log(location.pathname);///python_qishi/day29/01%20BOM.html
console.log(location.protocol);//http:
console.log(location.search);//?_ijt=36ujga8q9f3keptgp6867h102g // location.href = 'http://www.baidu.com';//重定向
// 重载页面 全局刷新 测试
// location.reload();//刷新网页 // history.go(-1);//后退一步
},2000)
2.Jquery介绍
-核心思想
write less,do more
- 什么是jquery?
jQuery是一个快速,小巧,功能丰富的JavaScript库。
它通过易于使用的API在大量浏览器中运行,使得HTML文档遍历和操作,事件处理,动画和Ajax更加简单。
通过多功能性和可扩展性的结合,jQuery改变了数百万人编写JavaScript的方式
3.jquery下载
https://www.bootcdn.cn/jquery/
4.jquery的引入
先引入jquery
再写的js脚本
<meta charset="UTF-8">
<title>Title</title>
<script src="./js/jquery.js"></script>
5.jquery和js区别
js包含jquery。
jquery只是封装文档遍历和操作,事件处理,动画和Ajax
6.jquery的选择器
css的选择器的作用:命中标签
jquery的选择器:命中DOM
-基础选择器
-高级选择器
<button>按钮</button>
<button>按钮2</button>
<button>按钮3</button>
<button>按钮4</button>
<button>按钮5</button>
<button>按钮6</button>
<button>按钮7</button>
<div class="box" id="box">alex</div> <script> //id选择器
console.log($('#box'))
//.style.color = 'red'
$('#box').css('color', 'red');
$('#box').css({
"color": 'red',
"background-color": "green"
}); //类选择器
console.log($('.box').css('color')); //标签选择器 jquery 内部遍历
$('button').click(function () {
// this 指的jsDOM对象 //jsDOM对象===》jquery对象
console.log($(this));
//jquery对象===》jsDom对象
console.log($('button').get(1)===this);
console.log(this); // this.style.color = 'red'; $(this).css('color','darkgreen'); })
7.jquery和js对象的转换
- //jsDOM对象===> jquery对象
console.log($(this));
//jquery对象===>jsDom对象
console.log($('button').get(0)===this);
// 入口函数
//window.onload 事件覆盖
// window.onload = function () {
// alert(1)
// };
// window.onload = function () {
// alert(2)
// };//弹窗弹出2覆盖了1 $(document).ready(function () {
console.log($('#dj'));
});//在文档加载后激活函数 $(function () {
// 后代选择器
$('#dj~p')
}) </script> </head>
<body>
<div class="box">
<p id="dj">
得劲
</p>
<p>
alex
</p>
<p class="box">
家辉
</p>
</div> </body>
8.jquery动画
#普通动画
$('.box').stop().hide(3000);
#卷帘门效果
$('.box').stop().slideDown(1000);
$('.box').stop().slideToggle(1000);
#淡入淡出
$('.box').stop().fadeOut(2000);
$('.box').stop().fadeToggle(2000)
<meta charset="UTF-8">
<title>Title</title>
<script src="./js/jquery.js"></script>
<style>
.box{
width: 300px;
height: 300px;
background-color: red;
display: block;
}
</style> </head>
<body>
<button>动画</button>
<div class="box"></div>
<script> let ishide = true;
$('button').mouseenter(function () {
// if(ishide){
// $('.box').stop().hide(3000);
// ishide = false;
// }else{
// $('.box').stop().show(1000);
// ishide = true;
// } // $('.box').stop().toggle(1000); //卷帘门效果
// // $('.box').stop().slideDown(1000);
// $('.box').stop().slideToggle(1000); //淡入淡出
$('.box').stop().fadeOut(2000);
$('.box').stop().fadeToggle(2000); })
</script>
day55 Pyhton 前端Jquery07的更多相关文章
- day56 Pyhton 前端Jquery08
前端 内容回顾: -BOM -jquery介绍 -jquery下载和引入方式 npm install jquery -jquery的选择器 -基本选择器 -通配符选择器 - id选择器 - 类选择器 ...
- day50 Pyhton 前端01
文档结构: <!-- 定义文档类型 --> <!DOCTYPE html> <!-- 文档 --> <html lang='en'> <!-- 仅 ...
- day57 Pyhton 前端Jquery09
内容回顾: - 筛选选择器 $('li:eq(1)') 查找匹配的元素 $('li:first') $('li:last') - 属性选择器 - 筛选的方法 - find() 查找后代的元素 - ...
- day54 Pyhton 前端JS06
内容回顾 - ECMAScript5.0 基础语法 - var 声明变量 - 五种基本数据类型 - string - number NaN number 1 number - boolean - un ...
- day54 Pyhton 前端JS05
今日内容: 1.数组Array var colors = ['red','color','yellow']; 使用new 关键词对构造函数进行创建对象 var colors2 = new Array( ...
- day53 Pyhton 前端04
内容回顾: 盒子: 内边距:padding,解决内部矛盾,内边距的增加整个盒子也会增加 外边距:margin,解决外部矛盾,当来盒子都有外边距的时候,取两者最大值 边框:border border-c ...
- day52 Pyhton 前端03
内容回顾 块级标签: div p h 列表:ol;ul;dl 表格:table 行内标签: span a i/em b/strong u/del 行内块: input textarea img 其他: ...
- day51 Pyhton 前端02
内容回顾: 1.h1~h6:加粗,数字越大级别越小,自动换行 2.br:换行;hr:分割线; (特殊符号,空格) 3.p:与前边和后边内容之间有间距 4.a标签的href:本地文件连接;网络连接;锚链 ...
- 前端基础之jQuery(Day55)
阅读目录 一 jQuery是什么? 二 什么是jQuery对象? 三 寻找元素(选择器和筛选器) 四 操作元素(属性,css,文档处理) 扩展方法 (插件机制) 一. jQuery是什么? [1] ...
随机推荐
- centos6.5环境下安装yum工具
前不久因为安装数据库时动了yum安装文档中的参数,导致yum安装软件时总是出现no package等问题,决定重装yum工具. 第一步:下载原有yum安装包 [root@linux-node3 ~]# ...
- 2020BJDCTF
diff: 不得不说这种题目挺有意思的,现在记录一下阶梯过程: 先登录远程,发现有两个文件: 虽然直接能卡到flag文件,但是我们是以ctf用户登录的,并不能直接打开flag文件.仔细观察diff文件 ...
- Require.js中的路径在IDEA中的最佳实践
本文主要讲述require.js在IDEA中路径智能感知的办法和探索中遇到的问题. 测试使用的目录结构:一种典型的thinkphp 6的目录结构,如下图. 现在我通过在 vue-a.js 中运用不同的 ...
- .NET委托,事件和Lambda表达式
委托 委托是什么? 委托是一种引用类型(其实就是一个类,继承MulticastDelegate特殊的类.),表示对具有特定参数列表和返回类型的方法的引用. 每个委托提供Invoke方法, BeginI ...
- Linked List 单向链表
Linked List 链表的理解 小结 链表是以节点的方式来储存的 每个节点包括 data域:存放数据,next域:指向下一个节点 如图:发现链表的各个节点不一定是连续储存的 链表分为带头节点的链表 ...
- python里面的project、package、module分别是什么
2020/5/25 1.project(项目) project 即项目,是一个很大的文件夹,里面有好多的 .py 文件. 在Spyder 中点击菜单栏 projects -----> new ...
- Scala的递归函数应用
使用递归函数实现累加: def sum(nums:Int*):Int={ if(nums.length == 0) 0 else nums.head + sum(nums.tail:_*) } 结果为 ...
- Redis基础知识补充及持久化、备份介绍
Redis知识补充 在上一篇博客<Redis基础认识及常用命令使用(一)–技术流ken>中已经介绍了redis的一些基础知识,以及常用命令的使用,本篇博客将补充一些基础知识以及redis持 ...
- python中random库的使用
基本随机函数 计算机产生随机数是需要随机数种子的,例如 给定一个随机数种子,就能利用梅森旋转算法产生一系列随机序列 每一个数都是随机数,只要随机种子相同,产生的随机数和数之间的关系都是确定的 随机种子 ...
- java面试题2-自己整合的
1.HashMap的底层实现原理 HashMap是数组+链表组成的实现了Map.Cloneable.Serializable接口,继承了AbstractMap类 HashMap是否线程安全? Hash ...