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