1.获得当前索引: var index = getElementOrder(Field)-1;//Field传入this2.获得当前的值: fm.QuantityMain[index].value//QuantityMain是name;fm是form的name3.获得tbody及其行数:var oT ...
分类:
Web程序 时间:
2017-03-31 15:37:33
阅读次数:
454
A ring is compose of n circles as shown in diagram. Put natural number 1, 2, ..., n into each circle separately, and the sum of numbers in two adjacen ...
分类:
其他好文 时间:
2017-03-30 19:04:20
阅读次数:
159
今天看看angular。文章将从三个大的部分来说,第一部分什么是angular,第二部分,初次使用时需要注意的一些事项,第三部分,angular基础概念; 一,什么是AngularJs? AngularJs是为了克服html在构建应用上的不足而设计的,它是一个JavaScript框架。通过使用我们称 ...
分类:
Web程序 时间:
2017-03-29 22:31:25
阅读次数:
257
Nowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very popular in HDU. Maybe you are a good boy, and know little about this ...
分类:
其他好文 时间:
2017-03-28 00:31:42
阅读次数:
203
系统登录顺序: /etc/profile /etc/profile.d/a.sh (a.sh自己建的) /root/.bash_profile /root/.bashrc /etc/bashrc /bin/bash 提供命令解释器(终端) 直接打/bin/bash 非登录shell /root/.b ...
分类:
其他好文 时间:
2017-03-23 22:29:23
阅读次数:
184
设计模式--代理模式 1.概述 1.1 定义 "Provide a surrogate or placeholder for another object to control access to it"(提供一种代理以控制对这个对象的访问) 代理模式分为动态代理、静态代理,从本质上两者都是产生一个 ...
分类:
其他好文 时间:
2017-03-23 03:20:53
阅读次数:
229
游戏引擎与C++参考CppCon 2016: Jason Jurecka “Game engine using STD C++ 11"此presentation主要关注C++11在游戏引擎中的使用游戏...
分类:
编程语言 时间:
2017-03-22 21:40:24
阅读次数:
251
1、MooseFS 支持FUSE,相对比较轻量级,对master服务器有单点依赖,用perl编写,性能相对较差,国内用的人比较多,易用,稳定,对小文件很高效。 + 支持文件元信息 + mfsmount 很好用 + 编译依赖少,文档全,默认配置很好 + mfshdd.cfg 加 * 的条目会被转移到其 ...
分类:
其他好文 时间:
2017-03-21 12:35:14
阅读次数:
247
C#时间/日期格式大全,C#时间/日期函数大全 有时候我们要对时间进行转换,达到不同的显示效果 默认格式为:2005-6-6 14:33:34 如果要换成成200506,06-2005,2005-6-6或更多的该怎么办呢? 我们要用到: DateTime.ToString的方法(String, IF ...