<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>滑动条</title> <style type="text/css"> .box{ width: 400px; height: 8px; background- ...
分类:
其他好文 时间:
2019-07-28 11:01:08
阅读次数:
96
private void panelControl1_MouseDown(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { currentFormWidth = this.Width; ... ...
import cx_Oracle #引用模块cx_Oracle conn=cx_Oracle.connect('oa/oa@192.168.0.70:1521/ekp') #连接数据库 cursor = conn.cursor () try: # 解析sql语句 ... ...
分类:
数据库 时间:
2019-07-23 09:42:32
阅读次数:
124
CORS全称Cross-Origin Resource Sharing, 跨域资源共享,是HTML5的一个新特性,已被所有浏览器支持,不同于古老的jsonp只能get请求。 检测方式: 1.curl访问网站 检查返回包的 Access-Control-Allow-Origin 字段是否为https: ...
分类:
其他好文 时间:
2019-07-21 18:46:32
阅读次数:
468
工作中git常用操作记录,自己用的也不是特别熟练,希望大家多多指教,以后会继续完善。 1. 基础使用# git clone url <asName> 从现有的repository克隆到本地,最后的asName是别名,可选项 #新建本地仓库 (安装git后)在要创建git仓库repository的地方 ...
分类:
其他好文 时间:
2019-07-21 18:43:01
阅读次数:
77
07.21自我总结 pymysql模块 一.创建连接库 二.建立游标 三.提交sql语句 四.查看内容 五.移动游标 相对位置 cursor.scroll(1, "relative") cursor.scroll() 默认是相对位置 绝对位置 cursor.scroll(0, "absolute") ...
分类:
数据库 时间:
2019-07-21 16:46:01
阅读次数:
115
Date: 2019 07 17 Author: Sun 本节要讲解的内容有: (1)scrapy item数据封装 (2)scrapy管道处理 (3) scrapy 数据持久化 (4) scrapy下载项目文件和图片 一. Scrapy Item数据封装 ? 爬取的主要目标就是从非结构性的数据源提 ...
分类:
其他好文 时间:
2019-07-15 01:12:15
阅读次数:
93
样式: .box{width:300px;height: 300px;background:pink;position: absolute;user-select: none} //大盒子 .title{width: 100%;height: 50px; background:#ccc;cursor ...
分类:
Web程序 时间:
2019-07-13 22:42:15
阅读次数:
143
目录 一、Windows编程基础知识... 1 1.句柄... 1 2.消息... 1 (1)系统定义的消息分类... 2 (2)不同消息的取值范围... 2 (3)Windows应用中的常用消息... 2 二、Windows应用的基本结构... 3 1.数据类型... 3 2.数据结构... 4 ... ...
本地wamp导入4G数据时,出现了ERROR 1366 (HY000): Incorrect string value: '\xAD\xE5\x9B\xBD\xE9\x82...,如图下 找到的解决的方法如下: my.ini,打开 1.在[client]段落增加:default-character- ...
分类:
其他好文 时间:
2019-07-13 00:52:09
阅读次数:
255