随笔分类 -  html

about html more
摘要:1. 代码 <meta name="renderer" content="webkit"> 2.链接 阅读全文
posted @ 2019-05-23 10:25 justSmile2 阅读(186) 评论(0) 推荐(0) 编辑
摘要:HTML5本地存储之本地数据库篇 姓名: 手机: 公司: 阅读全文
posted @ 2019-04-25 17:59 justSmile2 阅读(679) 评论(0) 推荐(0) 编辑
摘要:细节1 1.Chrome中文界面下会将小于12px的字体默认显示为12px,解决方法:在CSS中加入-webkit-text-size-adjust:none; 2.link可以加载除CSS以外的其他文档,@import只能加载CSS 3.IE下,可以使用普通方法获取自定义属性,也可以使用getAt 阅读全文
posted @ 2019-04-25 10:56 justSmile2 阅读(120) 评论(0) 推荐(0) 编辑
摘要:<iframe width="310" scrolling="no" height="25" frameborder="0" allowtransparency="true" src="http://i.tianqi.com/index.php?c=code&id=40&icon=1&num=3"> 阅读全文
posted @ 2019-04-24 18:51 justSmile2 阅读(150) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2019-04-19 19:28 justSmile2 阅读(12) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2019-04-11 18:36 justSmile2 阅读(24) 评论(0) 推荐(0) 编辑
摘要:相关文章 面试官:谈谈你对 CSS 盒模型的认识?(你确定会?) 做为前端开发者,你应该要懂的 http协议 前端面试:谈谈 JS 垃圾回收机制 图片优化让网站大小减少 62% Javascript 面试中经常被问到的三个问题! BAT及各大互联网公司2014前端笔试面试题--JavaScript篇 阅读全文
posted @ 2019-03-26 20:12 justSmile2 阅读(116) 评论(0) 推荐(0) 编辑
摘要:1.input 输入值的监听 //用于监听input的值变化(input的值产生变化才会触发事件) (function ($) { $.fn.watch = function (callback) { return this.each(function () { //缓存以前的值 $.data(th 阅读全文
posted @ 2019-03-21 20:08 justSmile2 阅读(2007) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2019-03-19 18:57 justSmile2 阅读(6) 评论(0) 推荐(0) 编辑
摘要:1. h5 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http 阅读全文
posted @ 2019-03-05 17:06 justSmile2 阅读(435) 评论(0) 推荐(0) 编辑
摘要:https://www.tingyun.com/ http://www.beetobees.com/Index/Index.html https://hi.codesailing.cn/lesson/?utm_source=baidu&utm_term=zhimei&utm_concontent=p 阅读全文
posted @ 2019-03-04 13:05 justSmile2 阅读(176) 评论(0) 推荐(0) 编辑
摘要:1.使用场景 对浏览器 识别/不识别 的文件下载 2.核心代码 var eleTextarea = document.querySelector('textarea'); var eleButton = document.querySelector('input[type="button"]'); 阅读全文
posted @ 2019-02-26 13:06 justSmile2 阅读(249) 评论(0) 推荐(0) 编辑
摘要:一.比较全面的思维导图 二.相关资源 1. 布局框架:Bootstrap: http://getbootstrap.com/Foundation: http://foundation.zurb.com/Uikit: http://www.getuikit.com/Web Components:htt 阅读全文
posted @ 2019-02-20 11:15 justSmile2 阅读(244) 评论(0) 推荐(0) 编辑
摘要:1、onkeyup = "value=value.replace(/[^\d]/g,'')" 使用 onkeyup 事件,有 bug ,那就是在中文输入法状态下,输入汉字之后直接回车,会直接输入字母 2、onchange = "value=value.replace(/[^\d]/g,'')" 使用 阅读全文
posted @ 2019-01-02 15:02 justSmile2 阅读(1549) 评论(0) 推荐(0) 编辑
摘要:html <meta http-equiv="Expires" content="0"><meta http-equiv="Pragma" content="no-cache"><meta http-equiv="Cache-control" content="no-cache"><meta htt 阅读全文
posted @ 2018-11-20 10:09 justSmile2 阅读(1338) 评论(0) 推荐(0) 编辑
摘要:1. 百度百科 2.http | MDN 3.协议讲解 4.经典题 5.http与https的区别 6. http服务器返回状态总结 7.网络七层协议 开放式系统互联参考模型(OSI)的7层从上到下分别是 7 应用层 6 表示层 5 会话层 4 传输层 ( 定义了应用程序的功能 ) 3 网络层 2 阅读全文
posted @ 2018-11-15 11:38 justSmile2 阅读(122) 评论(0) 推荐(0) 编辑
摘要:<meta http-equiv="Refresh" content="5;url=http://www.w3school.com.cn" /> meta 标签知多少 阅读全文
posted @ 2018-11-07 20:02 justSmile2 阅读(54) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2018-11-06 19:07 justSmile2 阅读(13) 评论(0) 推荐(0) 编辑
摘要:网页 标签栏 / 收藏栏 小图标设置使用 link 标签 <link rel="icon" href="../Content/favicon.ico" type="image/x-icon" /> <link rel="icon" href="1.gif" type="image/gif" size 阅读全文
posted @ 2018-11-06 11:55 justSmile2 阅读(249) 评论(0) 推荐(0) 编辑
摘要:两种用法: 页面跳转时使用 url (部分浏览器会阻止新窗口弹出页面),其他情况一律遵循 ‘结构样式行为分离’ 1. url href="#" 文档顶部 表示回到最顶部 href="https://www.baidu.com" 绝对地址 页面跳转 <a href="layout/flex_layou 阅读全文
posted @ 2018-10-24 16:29 justSmile2 阅读(317) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示