上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页

2018年10月20日

条件注释判断浏览器

摘要: 条件注释判断浏览器,放在head头文件中,比如,用于IE9以及IE9以下版本 常用条件注释判断浏览器 <!--[if !IE]><!--> 除IE外都可识别 <!--<![endif]--><!--[if IE]> 所有的IE可识别 <![endif]--><!--[if IE 6]> 仅IE6可识 阅读全文

posted @ 2018-10-20 19:45 婧星 阅读(225) 评论(0) 推荐(0) 编辑

2018年10月16日

复(单)选框与文字对齐问题

摘要: 一般情况下, 文字大小为14px;则在浏览器中对齐良好; 若文字大小为12px;则出现文字与复选框或者单选框不对齐现象: 不在同一条线上 解决办法: 1)、在单选框或者复选框上设置:vertical-align: text-bottom;margin-bottom: 2px;*margin-bott 阅读全文

posted @ 2018-10-16 15:55 婧星 阅读(296) 评论(0) 推荐(0) 编辑

margin相关属性值

摘要: 1、图片与文字对齐问题 图片与文字默认是居底对齐。一般img标签打头的小图标与文字对齐的话,通过 img{margin:0 3px -3px 0;} 这个的东西,能实现效果和兼容性俱佳的对齐效果; demo: 阅读全文

posted @ 2018-10-16 15:32 婧星 阅读(254) 评论(0) 推荐(0) 编辑

2018年10月15日

sweetalert的使用

摘要: 1.swal()方法中的参数: 2.引入css与js,通过cdn加速服务 <link href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css" rel="stylesheet"> <script 阅读全文

posted @ 2018-10-15 16:52 婧星 阅读(7514) 评论(0) 推荐(0) 编辑

2018年10月12日

h5新增属性

摘要: localStorage,sessionStorage,video,audio的使用方法 <video controls="controls"> <source src="song.ogg" type="video/ogg"> </video> <audio src="xxx.mp3" autopl 阅读全文

posted @ 2018-10-12 10:51 婧星 阅读(246) 评论(0) 推荐(0) 编辑

h5本地缓存(localStorage,sessionStorage)

摘要: H5本地存储数据 localStorage,sessionStorage的区别: 相同点: 缓存数据比cookie的范围大; localStorage:关闭浏览器数据不会消失,除非手动删除数据 sessionStroage:数据暂时缓存在客户端,关闭浏览器数据丢失 下面是localStorage,s 阅读全文

posted @ 2018-10-12 10:00 婧星 阅读(5133) 评论(0) 推荐(0) 编辑

2018年10月11日

css3实现背景色渐变linear-gradient()

摘要: 用线性渐变创建图像。 如果想创建以对角线方式渐变的图像,可以使用 to top left 这样的多关键字方式来实现。 示例代码: linear-gradient(#fff, #333); linear-gradient(to bottom, #fff, #333); linear-gradient( 阅读全文

posted @ 2018-10-11 21:40 婧星 阅读(29455) 评论(0) 推荐(1) 编辑

JavaScript中date 对象常用方法

摘要: Date 对象 Date 对象用于处理日期和时间。 Date对象属性: 定义和用法 constructor 属性返回对创建此对象的 Date 函数的引用。 语法 prototype属性 定义和用法 prototype 属性使您有能力向对象添加属性和方法。 语法: 结果为:20000 方法: 阅读全文

posted @ 2018-10-11 09:44 婧星 阅读(1788) 评论(0) 推荐(0) 编辑

ajax-异步加载片段

摘要: 片段一般用.htm后缀 下面是ajax加载片段的demo 涉及知识点为: 加载的box.htm 片段的内容为 载入片段为box.htm打印结果为: 载入片段为boxs.htm的打印结果为: 阅读全文

posted @ 2018-10-11 09:28 婧星 阅读(345) 评论(0) 推荐(0) 编辑

2018年10月10日

ajax

摘要: deve.json数据为: 或者请求的是PHP,txt,script格式 阅读全文

posted @ 2018-10-10 16:14 婧星 阅读(137) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页

导航