Fork me on GitHub

09 2017 档案

摘要:mounted里 $("#btnID").click(function(event) { $("#divID").toggle(); $(document).one("click", function() { $("#divID").hide(); }); event.stopPropagation(); }); $("#divID").click(fun... 阅读全文
posted @ 2017-09-28 17:05 思考的大腿 阅读(192) 评论(0) 推荐(0) 编辑
摘要:$("#divID input").val(""); 阅读全文
posted @ 2017-09-28 14:52 思考的大腿 阅读(138) 评论(0) 推荐(0) 编辑
摘要:1.第一种情况(z-index无论设置多高都不起作用情况): 这种情况发生的条件有三个: 1、父标签 position属性为relative; 2、问题标签无position属性(不包括static); 3、问题标签含有浮动(float)属性。 eg:z-index层级不起作用,浮动会让z-inde 阅读全文
posted @ 2017-09-28 10:03 思考的大腿 阅读(266) 评论(0) 推荐(0) 编辑
摘要:data里isActive:-1,method里 checkedItem(index){ this.isActive=index;},页面里 <div v-for="(item,index) in nameoptions" v-bind:class="{active:index==isActive} 阅读全文
posted @ 2017-09-27 20:57 思考的大腿 阅读(27075) 评论(0) 推荐(0) 编辑
摘要:超出高度滚动条style="width:230px; height: 180px; overflow: auto;"超出宽度点点点style="width: 220px; overflow: hidden; white-space:nowrap; text-overflow:ellipsis;" 阅读全文
posted @ 2017-09-27 20:30 思考的大腿 阅读(909) 评论(0) 推荐(0) 编辑
摘要:div{ -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px;} 阅读全文
posted @ 2017-09-27 16:56 思考的大腿 阅读(162) 评论(0) 推荐(0) 编辑
摘要:html首行缩进2字符,可以使用CSS属性中的【text-indent】进行设置。 设置代码如下: 阅读全文
posted @ 2017-09-27 15:38 思考的大腿 阅读(1256) 评论(0) 推荐(0) 编辑
摘要:Vue2键盘事件:keydown/keyup... 1.使用 <!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <script src="vue.js"></script> <script type="text/ 阅读全文
posted @ 2017-09-26 21:20 思考的大腿 阅读(1489) 评论(0) 推荐(0) 编辑
摘要:<el-date-picker format="yyyy-MM-dd" v-model="dateValue" type="date" placeholder="请选择时间" @change="dateChange" :picker-options="pickerOptions0"></el-dat 阅读全文
posted @ 2017-09-26 11:07 思考的大腿 阅读(6979) 评论(0) 推荐(1) 编辑
摘要:效果如图 阅读全文
posted @ 2017-09-21 20:41 思考的大腿 阅读(1422) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>渐变的竖线</title></head><style>.div1 {height: 500px;border-left: 2px solid;border-image: 阅读全文
posted @ 2017-09-21 14:58 思考的大腿 阅读(1912) 评论(0) 推荐(0) 编辑
摘要:$(document).ready(function(e) { var counter = 0; if (window.history && window.history.pushState) { $(window).on('popstate', function () { window.histo 阅读全文
posted @ 2017-09-08 11:20 思考的大腿 阅读(4474) 评论(1) 推荐(0) 编辑
摘要:在html标记样式里加入 这样的方式可以设置chrome字体小于12px,但是字体大小不再随ctrl+滚轮变化 阅读全文
posted @ 2017-09-07 16:14 思考的大腿 阅读(358) 评论(0) 推荐(0) 编辑
摘要:获取各种屏幕的宽度和高度Javascript: 网页可见区域宽: document.body.clientWidth网页可见区域高: document.body.clientHeight网页可见区域宽: document.body.offsetWidth (包括边线的宽)网页可见区域高: docum 阅读全文
posted @ 2017-09-06 16:58 思考的大腿 阅读(401) 评论(0) 推荐(0) 编辑
摘要:左右auto加个宽度。margin-left: auto; margin-right: auto; width:640px; 阅读全文
posted @ 2017-09-06 14:58 思考的大腿 阅读(129) 评论(0) 推荐(0) 编辑