码迷,mamicode.com
首页 >  
搜索关键字:auto    ( 14366个结果
临时脚本20200802
-- drop table poms_status; CREATE TABLE `poms_status` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID', `mid` varchar(64) NOT NULL COMMENT '传感器编 ...
分类:其他好文   时间:2020-08-02 22:22:01    阅读次数:77
haslayout
1.什么是haslayout? layout是wiendows IE的一个私有概念,它决定了元素如何对其内容定位和尺寸计算,以及与其他元素的关系和相互作用。当一个元素“拥有布局”时,它会负责本身及其子元素的尺寸和定位。而如果一个元素“没有拥有布局”,那么它的尺寸和位置由最近的拥有布局的祖先元素控制。 ...
分类:其他好文   时间:2020-08-02 12:46:20    阅读次数:93
Linux 生成 core dump的方法及设置
A core dump is the recorded state of the working memory of a computer program at a specific time, generally when the program has terminated abnormally ...
分类:系统相关   时间:2020-08-01 21:26:59    阅读次数:103
C++中break语句、continue语句和goto语句区别
C++的break语句、continue语句、goto语句和return语句简要说明 ...
分类:编程语言   时间:2020-08-01 12:37:23    阅读次数:71
页面布局
1、padding-bottom实现等比例缩放 原理:1、父元素设置定位为相对定位(position: relative)2、子元素设置定位为绝对定位(position: absolute)3、父元素padding-bottom值为百分比时以父元素为参考,正方形时同父元素一样的百分比。4、子元素的绝 ...
分类:其他好文   时间:2020-07-31 18:01:58    阅读次数:89
flask-模型
模型简单使用 from flask import Flask from flask_sqlalchemy import SQLAlchemy from flask_migrate import Migrate, MigrateCommand from flask_script import Mana ...
分类:其他好文   时间:2020-07-31 12:29:15    阅读次数:83
lyt经典版MySQL基础——流程控制结构
1 #流程控制结构 2 /* 3 顺序结构:程序从上往下依次执行 4 分支结构:程序从两条或多条路径中选择一条去执行 5 循环结构:程序在满足一定条件的基础上,重复执行一段代码 6 7 */ 8 9 #一、分支结构 10 #1.if函数 11 /* 12 功能:实现简单的双分支 13 语法: 14 ...
分类:数据库   时间:2020-07-30 21:56:22    阅读次数:86
抖音设备id激活
设备id注册后,还需要下一步xlog登记,激活动作,激活后的数据格式: { "auto_device_id": "1002351022582446", "device_id": "1002351022582446", "uuid": "827321595968617", "openudid": "2 ...
分类:其他好文   时间:2020-07-30 18:28:59    阅读次数:278
多表查询
多表查询 准备 建表与数据准备 #建表 create table department( id int, name varchar(20) ); create table employee( id int primary key auto_increment, name varchar(20), s ...
分类:其他好文   时间:2020-07-30 14:30:52    阅读次数:55
python+selenium打开浏览器开发者模式
from selenium import webdriver options = webdriver.ChromeOptions() options.add_argument("--auto-open-devtools-for-tabs") driver = webdriver.Chrome(chr ...
分类:编程语言   时间:2020-07-30 14:26:27    阅读次数:110
14366条   上一页 1 ... 40 41 42 43 44 ... 1437 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!