开发app过程中需要进行子页面tabs隐藏,网上找了N多方案,度娘出来的都是写指令,但是测试中bug明显,于是墙外谷歌。。终于找到完美的方法,如下tabs.htmlcontroller里.controller('TabsCtrl', function($scope, $rootScope, $sta...
分类:
其他好文 时间:
2015-12-16 19:02:15
阅读次数:
151
PS:希望各路大神能够指点setTimeout(function,time):单位时间内执行一次函数function,以后不执行;对应清除定时器方法为clearTimeout;setInterval(function,time):单位时间内执行一次函数function,以后一直重复执行函数;对应清除...
分类:
其他好文 时间:
2015-12-16 16:58:08
阅读次数:
240
function fn01() { $('selector').each(function(index) { if (index % 3 == 0) { $(this)........ } );} 只要该元素的ind...
分类:
其他好文 时间:
2015-12-16 15:28:15
阅读次数:
149
var http=require('http');var cheerio=require('cheerio');//页面获取到的数据模块var url='http://www.jcpeixun.com/lesson/1512/';function filterData(html){ /*所要获...
分类:
Web程序 时间:
2015-12-16 15:15:41
阅读次数:
223
判空 function check(s) { return (s == null || typeof (s) == "undefined" || s == ""); }去掉前后空格 function trim(s) { return s.replace(/(^\s*)|(\s*$)/g, "").....
分类:
Web程序 时间:
2015-12-16 12:36:06
阅读次数:
149
var xw = { name : "小王", gender : "男", age : 24, say : function(sch, jun) { console.log(arguments); //console.log(this.name +...
分类:
移动开发 时间:
2015-12-16 12:10:30
阅读次数:
182
public function _initialize() { C('DEFAULT_THEME', 'admin'); header("Content-Type:text/html; charset=utf-8"); if (ACTION_NAME ...
分类:
Web程序 时间:
2015-12-16 09:31:08
阅读次数:
167
这个是我今天新学到的,慢慢积累,加油查询$.get("aa.html",function(data){$("#bbb").html(data);});
分类:
其他好文 时间:
2015-12-16 00:27:38
阅读次数:
640
1. 物体掉落 1 window.onload = startMove; 2 3 var iSpeedX = 100; 4 var iSpeedY = 8; 5 6 function startMove() { 7 setInterval(...
分类:
其他好文 时间:
2015-12-16 00:22:09
阅读次数:
191
$(function () { $('#search_button').button(); /*$('#reg_a').click(function() { $('#reg').dialog(); });*/ //同时打开两个对话框 /*$('#reg').dialog(); $...
分类:
Web程序 时间:
2015-12-16 00:17:26
阅读次数:
189