摘要:
1.一个组件就相当于一个区域 2.向子组件传值可以通过v-bind: 父组件向子组件传值:v-bind ex: <todo-item v-for="item in list" :content="item"></todo-item>//循环list并将值赋值给item 通过v-bind:传值给子组件 阅读全文
摘要:
// 获取当前时间时间戳 var currentTime = Date.now(); // 获取指定时间时间戳 // 注1:这里写的是2012年9月1日0时0分0秒 // 注2:Javascript中月份是实际数字减1 var targetTime = (new Date(2012, 8, 1, 0 阅读全文
摘要:
页面定时刷新除了有js相关的定时器还有css中的 <meta http-equiv="refresh" content="20"> content="20"代表多少秒刷新页面 阅读全文
摘要:
写法一: // 登陆 $("#login").click(function(){ loginSend();//自定义方法 }); $('#ucode').bind('keyup', function(event) {//回车后 执行 if (event.keyCode == "13") { //回车 阅读全文
摘要:
1、验证年龄 //用圆括号将所有选择项括起来,相邻的选择项之间用|分隔。但用圆括号会有一个副作用,使相关的匹配会被缓存,此时可用 ?: 放在第一个选项前来消除这种副作用 var reg=/^(?:[1-9][0-9]?|1[01][0-9]|120)$/ ; //年龄是1-120之间有效 var a 阅读全文
摘要:
// 全图默认背景 // backgroundColor: ‘rgba(0,0,0,0)’, // 默认色板 color: ['#ff7f50','#87cefa','#da70d6','#32cd32','#6495ed', '#ff69b4','#ba55d3','#cd5c5c','#ffa5 阅读全文
摘要:
mytextStyle={ color:"#333", //文字颜色 fontStyle:"normal", //italic斜体 oblique倾斜 fontWeight:"normal", //文字粗细bold bolder lighter 100 | 200 | 300 | 400... fo 阅读全文
摘要:
table中的td内容超出以省略号显示,需满足的条件是: <style type="text/css"> table{ table-layout: fixed; border-collapse:collapse; width: 100%;/*自定义*/ } div,td{ text-overflow 阅读全文
摘要:
var url="http://localhost:8088/toChuFangDetails?code=1&codeM=m2&status=3"; var index=url.indexOf('?'); var spilitUrl=url.indexOf('&'); var typeNum; va 阅读全文