angular.bind 使用方法: angular.bind(self, fn, args) 参数: self: Object,fn的上下文对象,使用thi... ...
分类:
其他好文 时间:
2018-10-10 10:42:16
阅读次数:
103
serialize()对于未选中的checkbox,radio是获取不到值得。$.fn.all_serialize = function () { var a = this.serializeArray(); var $radio = $('input[type=radio],input[type=... ...
分类:
其他好文 时间:
2018-10-09 11:43:37
阅读次数:
119
let index = 0; let stack = []; function next() { let fn = stack[index]; index++; if(typeof fn === 'function'){ fn(); } } function fn1() { console.log(... ...
分类:
其他好文 时间:
2018-10-09 00:42:00
阅读次数:
623
1.动态语言 定义函数 形参与实参不需要一致 形参可由 arguments 类数组获取 (形参传入时与其形成映射关系) 变量之间无阻碍相互转换,不需要指定类型,(前一刻可能是 num ,可以立马变 str fn obj 。。) 2.解释性语言、跨平台 js代码运行前夕不需要编译,但是有个预编译过程( ...
分类:
Web程序 时间:
2018-10-08 20:44:26
阅读次数:
199
setInterval的用法 setInterval(fn_name,time_num); 意思是,现在不执行fn_name,然后过time_num毫秒执行一次fn_name,过time_num毫秒执行一次fn_name,就这样不停的执行,关了窗口或者用了clearInterval才停止。 注意,函 ...
分类:
其他好文 时间:
2018-10-06 11:57:45
阅读次数:
143
Description In the Fibonacci integer sequence, F0 = 0, F1 = 1, and Fn = Fn ? 1 + Fn ? 2 for n ≥ 2. For example, the first ten terms of the Fibonacci s ...
分类:
其他好文 时间:
2018-10-05 18:48:18
阅读次数:
209
题目描述 对于Fibonacci数列:1,1,2,3,5,8,13......大家应该很熟悉吧~~~但是现在有一个很“简单”问题:第n项和第m项的最大公约数是多少? Update:加入了一组数据。 输入输出格式 输入格式: 两个正整数n和m。(n,m<=10^9) 注意:数据很大 输出格式: Fn和 ...
分类:
其他好文 时间:
2018-10-05 15:10:45
阅读次数:
150
题目链接 Jzzhu has invented a kind of sequences, they meet the following property: You are given x and y, please calculate fn modulo 1000000007 (109?+?7). ...
分类:
其他好文 时间:
2018-10-04 11:15:32
阅读次数:
136
题目大意: 给你n个二次或一次的函数f1(x),f2(x)...fn(x),构造F(x)=min(f1(x),...,fn(x)),现在求F(x)在[0,1000]的最小值。(T < 10, n ≤ 10000)保留4位小数。 思路: 感觉是二分。一般情况下,F应该是下凸的,所以二分时保证两端点的导 ...
分类:
其他好文 时间:
2018-10-02 22:28:36
阅读次数:
180
The Fibonacci Numbers{0,1,1,2,3,5,8,13,21,34,55...} are defined by the recurrence: F0=0 F1=1 Fn=Fn-1+Fn-2,n>=2 Write a program to calculate the Fibona ...
分类:
其他好文 时间:
2018-10-02 18:00:06
阅读次数:
138