我是HTML

上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: /*类相关的函数*/ class_exists('A');//检测某个类是否存在 interface_exists('A');//检测某个接口是否存在 get_class('obj'); //获取某个对象所属类 get_parent_class('obj');//获取某个对象的类的父类 get_class_methods('obj');//获取对象的所有方法 get_class_vars('ob... 阅读全文
posted @ 2018-09-19 16:57 你值得拥有xxx 阅读(100) 评论(0) 推荐(0) 编辑
摘要: https://segmentfault.com/a/1190000010034177#articleHeader12 关于h5文件上传 https://blog.csdn.net/wildye/article/details/80516847 gulp匹配规则 阅读全文
posted @ 2018-08-22 16:19 你值得拥有xxx 阅读(132) 评论(0) 推荐(0) 编辑
摘要: TIMESTAMP的变体1,TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP在创建新记录和修改现有记录的时候都对这个数据列刷新2,TIMESTAMP DEFAULT CURRENT_TIMESTAMP在创建新记录的时候把这 阅读全文
posted @ 2018-06-27 15:15 你值得拥有xxx 阅读(20616) 评论(0) 推荐(0) 编辑
摘要: http-equiv顾名思义,相当于http的文件头作用,它可以向浏览器传回一些有用的信息,以帮助正确和精确地显示网页内容,与之对应的属性值为content,content中的内容其实就是各个参数的变量值。 引用 meat标签的http-equiv属性语法格式是:<meta http-equiv=" 阅读全文
posted @ 2018-05-07 11:22 你值得拥有xxx 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 验证码1 需要的背景图片 根据具体情况换代码中路径 第一个可能会出现问题 是找找背景图片的路径问题 阅读全文
posted @ 2018-04-26 16:15 你值得拥有xxx 阅读(195) 评论(0) 推荐(0) 编辑
摘要: '; /* * 支持多文件上传 检查所有的文件 是否符合要求 储存于 服务器 并返回图片地址 * */ class ImgUpload1 { protected static $imgs_file = array();//要返回的数据 (储存的文件信息) function __construct($files) { foreach ($file... 阅读全文
posted @ 2018-04-26 16:11 你值得拥有xxx 阅读(1712) 评论(0) 推荐(0) 编辑
摘要: window.addEventListener('load', function () { var imgs = document.querySelectorAll('img'); img = Array.from(imgs); console.log(img); var h = document.documentElement.clientHeight||doc... 阅读全文
posted @ 2018-04-09 14:51 你值得拥有xxx 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 1从另外一个 表的查询结果中查数据(没有条件(无where)) SELECT * FROM (SELECT * FROM students) as aSELECT * FROM student 这两个查询结果 一致 (如无as a 则查询语句1 会报错) 阅读全文
posted @ 2018-02-26 10:52 你值得拥有xxx 阅读(102) 评论(0) 推荐(0) 编辑
摘要: http://www.css88.com/archives/5402 a标签点击出现阴影效果 a { -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; -webkit-user-select: none; } 阅读全文
posted @ 2018-02-05 10:03 你值得拥有xxx 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Array对象的方法-25个 阅读全文
posted @ 2018-01-05 14:34 你值得拥有xxx 阅读(1563) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页