- 博客(29)
- 收藏
- 关注
转载 vscode 将本地项目上传到码云
******************************************************************************************************第⑥步操作完成 正常按提交git的方法进行提交转载于:https://www.cnblogs.com/lyt598/p/11242637.html...
2019-07-25 10:26:00 1263
转载 vue 模拟去哪网
模拟项目中遇到的问题,总结如下:1.争对轮播图 使用vue-awesome-swipernpm install vue-awesome-swiper@2.6.7 --save //因为此版本稳定// 轮播插件引用import VueAwesomeSwiper from 'vue-awesome-swiper'import 'swiper/dist/css/swip...
2019-07-23 14:06:00 103
转载 form 文件上传
通过form属性enctype="multipart/form-data"上传html:<form action="" class="" enctype="multipart/form-data" id="peo-new-form"> <div class="flex flex-pack-center"> &l...
2019-07-09 16:06:00 147
转载 分页
http://www.lovewebgames.com/jsmodule/paging.html使用此插件只需引入插件的css、js然后让后台返回对应的当前页、每页显示的条数、以及总条数(count)前端只需要把当前页、每页条数返给后台就ok转载于:https://www.cnblogs.com/lyt598/p/11152527.html...
2019-07-08 17:23:00 112
转载 修改默认select样式
<style type="text/css"> .select_demo,.select_list { width: 400px; height: 60px; } .select_demo { background-color: #fbe4e8; ...
2019-06-21 13:34:00 115
转载 模拟select下拉框、复选框效果
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" type="text/css" href="chufang/flex.less"/> <link rel="s...
2019-06-18 15:32:00 228
转载 json
JSON.parse()和JSON.stringify()1.parse 用于从一个字符串中解析出json 对象。例如var str='{"name":"cpf","age":"23"}'经 JSON.parse(str) 得到:Object: age:"23" name:"cpf" _proto_:Obj...
2019-06-18 15:27:00 59
转载 git 学习
1、官网下载git 并安装2、配置用户信息:(在git bash中执行) git config --global user.name '自己的名字' git config --global user.email '自己的邮箱' git config --list 查看配置信息3、客户端sourcetree从官网下载 转载于:https://www...
2019-05-22 17:57:00 78
转载 模拟聊天窗口 拖拽
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> html,body,#wrapper{height: 100%;width: 100%;} /*html{f...
2019-05-10 14:19:00 93
转载 vue学习
1.一个组件就相当于一个区域2.向子组件传值可以通过v-bind: 父组件向子组件传值:v-bind ex: <todo-itemv-for="item in list":content="item"></todo-item>//循环list并将值赋值给item 通过v-bind:传值给子组件todo-item Vue.comp...
2019-05-07 13:21:00 62
转载 时间戳
//获取当前时间时间戳varcurrentTime=Date.now();//获取指定时间时间戳//注1:这里写的是2012年9月1日0时0分0秒//注2:Javascript中月份是实际数字减1vartargetTime=(newDate(2012,8,1,0,0,0)).getTime();//获取差值,如果指定日...
2019-04-26 14:39:00 113
转载 定时刷新
页面定时刷新除了有js相关的定时器还有css中的<meta http-equiv="refresh" content="20">content="20"代表多少秒刷新页面转载于:https://www.cnblogs.com/lyt598/p/10773534.html...
2019-04-26 12:00:00 100
转载 回车 登录
写法一:// 登陆 $("#login").click(function(){ loginSend();//自定义方法 }); $('#ucode').bind('keyup', function(event) {//回车后 执行 if (event.keyCode == "13") { //回车执行查询 l...
2019-04-18 10:46:00 117
转载 验证 正则 整理
1、验证年龄 //用圆括号将所有选择项括起来,相邻的选择项之间用|分隔。但用圆括号会有一个副作用,使相关的匹配会被缓存,此时可用?:放在第一个选项前来消除这种副作用 var reg=/^(?:[1-9][0-9]?|1[01][0-9]|120)$/ ; //年龄是1-120之间有效 var age=prompt("请输入年龄",""); if(reg....
2019-04-18 10:39:00 203
转载 echart 属性设计大全
// 全图默认背景// backgroundColor: ‘rgba(0,0,0,0)’,// 默认色板color: ['#ff7f50','#87cefa','#da70d6','#32cd32','#6495ed','#ff69b4','#ba55d3','#cd5c5c','#ffa500','#40e0d0','#1e90ff','#ff63...
2019-04-12 13:41:00 95
转载 Echarts数据可视化grid直角坐标系(xAxis、yAxis)详解:
mytextStyle={ color:"#333", //文字颜色 fontStyle:"normal", //italic斜体 oblique倾斜 fontWeight:"normal", //文字粗细bold bolder lighter 100 | 200 | 300 | 400... ...
2019-04-12 11:44:00 280
转载 td内容超出 以…显示
table中的td内容超出以省略号显示,需满足的条件是:<style type="text/css"> table{ table-layout: fixed; border-collapse:collapse; width: 100%;/*自定义*/ } div,td{ text-overf...
2019-04-11 09:55:00 475
转载 获取url参数
var url="http://localhost:8088/toChuFangDetails?code=1&codeM=m2&status=3"; var index=url.indexOf('?'); var spilitUrl=url.indexOf('&'); var typeNum; var code; var status; ...
2019-04-08 17:03:00 81
转载 提交 是否有空值
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> table{ border-collapse: ...
2019-04-07 19:12:00 107
转载 sublime text3 安装插件
遇到的问题1:软件中无此属性打开Packages目录,Preferences > Browse Packages 就可以进入这个目录。$ cd Packages/$ git clonehttps://github.com/wbond/sublime_package_control.git"Package Control"之后重启一下sublime 就ok了遇到的...
2019-04-05 22:38:00 54
转载 jsp常用代码
1.头部<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%><%@ taglib prefix="fmt" uri="http://java....
2019-03-15 16:38:00 666
转载 jq鼠标移入移除
ele.on({ mouseover : function(){ } , mouseout : function(){ } })转载于:https://www.cnblogs.com/lyt598/p/10537034....
2019-03-15 14:49:00 116
转载 ajax请求超时解决方案
设置timeout的时间,通过检测complete时status的值判断请求是否超时,如果超时执行响应的操作。var ajaxTimeoutTest=$.ajax({ url:'',//请求地址 timeout:1000,//超时时间设置, 单位毫秒 type:'GET',//get或post data :{},//请求所传参数,json格式 dataT...
2019-03-15 14:27:00 576
转载 数组去重并排序
function unique(arr){ for(var i=0,res=[],json={};i<arr.length;i++){ if(!json[arr[i]]){ json[arr[i]]=1; res.push(arr[i]); } } ...
2019-03-12 15:54:00 210
转载 请列举出JS对象的几种创建方式?
javascript创建对象简单的说,无非就是使用内置对象或各种自定义对象,当然还可以用JSON;但写法有很多种,也能混合使用。1、对象字面量的方式 var person={firstname:"Mark",lastname:"Yun",age:25,eyecolor:"black"};2、用function来模拟无参的构造函数 functio...
2019-03-11 16:31:00 91
转载 如何用CSS定义一个动画?
<style type="text/css"> div{ width:100px;height: 100px; animation: carton 5s; background:red; -moz-animation: carton 5s; /* Firefox */ -webkit-animation: carto...
2019-03-11 16:18:00 467
转载 清除浮动比较好的方法
给父级定义伪类div:after{ content:""; display:table; clear:both;}转载于:https://www.cnblogs.com/lyt598/p/10510934.html
2019-03-11 15:37:00 40
转载 如何处理HTML5新标签的浏览器兼容性问题?
① IE8/IE7/IE6支持通过document.createElement方法产生的标签,可以利用这一特性让这些浏览器支持HTML5新标签② 也可以使用成熟的框架 ex:html5shim<!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html...
2019-03-11 15:23:00 225
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人