所遇记录:1.setAttribute("属性",value),相同的还有addAttribute("属性名",value),getAttribute(“属性名”)中只需要你想获得的属性名就行了2.arr.slice(start,end),start和end都是索引,且不包括end,ps:arr.s...
分类:
其他好文 时间:
2015-09-06 16:20:21
阅读次数:
103
如果要在循环内修改正在迭代的序列(例如,复制所选的项目),建议首先制作副本。迭代序列不会隐式地创建副本。使用切片就可以很容易地做到:>>>>>> for w in words[:]: # Loop over a slice copy of the entire list.... if le...
分类:
编程语言 时间:
2015-09-05 06:36:09
阅读次数:
206
目的 对于这两个数组操作接口,由于不理解, 往往被误用, 或者不知道如何使用。本文尝试给出容易理解的阐述。 数组 什么是数组? 数组是一个基本的数据结构, 是一个在内存中依照线性方式组织元素的方式, 其中元素的类型必须是相同的, 这个每个元素的索引地址才能被计算出来, 索引通常是数字,用来计算元素之...
分类:
其他好文 时间:
2015-09-01 01:35:16
阅读次数:
316
Go内建函数copy:func copy(dst, src []Type) int用于将源slice的数据(第二个参数),复制到目标slice(第一个参数)。返回值为拷贝了的数据个数,是len(dst)和len(src)中的最小值。看代码:package main import ("fmt") fu...
分类:
其他好文 时间:
2015-08-30 17:26:05
阅读次数:
138
func cap(v Type) int返回指定类型的容量,根据不同类型,返回意义不同。数组: 元素个数 (和len(v)一样).数组指针: *v的元素个数 (和len(v)一样).Slice: the maximum length the slice can reach when resliced...
分类:
其他好文 时间:
2015-08-30 17:16:43
阅读次数:
130
日期1. 日期时间戳 +new Date() = new Date().getTime() 数组1. 类数组转数组 var arr = Array.prototype.slice.call(arguments)2. 连接类数组 Array.prototype.push.apply(arr, argu...
分类:
编程语言 时间:
2015-08-30 00:54:55
阅读次数:
152
题目如下:
One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the core regions are identified in each MRI slice, you...
分类:
其他好文 时间:
2015-08-28 17:53:29
阅读次数:
261
首先定义一个变量便于下面测试:var str = "xx351223441";substring:str.substring(form,to):从字符串里截取下标为form到下标为to的字符串(不包括to对应的字符)alert(str.substring(2,6)) // 3512当form>to....
分类:
其他好文 时间:
2015-08-27 13:12:53
阅读次数:
147
1. 直接修改数组长度;越界添加元素,补充undefined; 也可以减少长度,删除元素2.indexOf ,对比字符串用法3.slice ,对比字符串 substring4.push ,pop5.shift ,unshift 插队 python collections的双端队列>>> t=coll...
分类:
编程语言 时间:
2015-08-26 19:14:49
阅读次数:
153
//confirm function Confirm(msg, control) { $.messager.confirm('确认', msg, function (r) { if (r) { eval(control.toString().slice(11...
分类:
Web程序 时间:
2015-08-25 23:27:33
阅读次数:
235