上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页

2016年4月16日

js管理内存

摘要: 数据不再有用时,最好通过将其值置NULL来释放其引用-这个做法叫做解除引用(dereference)。这个做法适用于全局变法和全局对象的属性。 localPerson 在执行完之后就离开了其执行环境。但是对全局变量而言,则需要我们在不使用它的时候手动解除引用。解除一个值的引用不意味着自动回收该值所占 阅读全文

posted @ 2016-04-16 22:49 与非朋仔 阅读(139) 评论(0) 推荐(0) 编辑

2016年4月15日

jquery获得select的文本

摘要: 本来以为jQuery("#select1").val();是取得选中的值, 那么jQuery("#select1").text();就是取得的文本。 这是不正确的,正确做法是: jQuery("#select1 option:selected").text(); 阅读全文

posted @ 2016-04-15 20:44 与非朋仔 阅读(129) 评论(0) 推荐(0) 编辑

姚帅推荐

摘要: http://geek.csdn.net/news/detail/67260 阅读全文

posted @ 2016-04-15 13:42 与非朋仔 阅读(139) 评论(0) 推荐(0) 编辑

2016年4月13日

jquery从tr获取td

摘要: 已知HTML:<tr id="row001"><td>001</td><td>张三</td></tr>JQUERY代码:var $tr=$("#row001"),valArr=[];//$tr是获取的tr$tr.find("td").each(function(){valArr.push($.tri 阅读全文

posted @ 2016-04-13 13:59 与非朋仔 阅读(382) 评论(0) 推荐(0) 编辑

2016年4月12日

json-c代码示例

摘要: json_test:json_test.c cc -g -D__STRICT_ANSI__ -ljson -I/usr/local/include/json/ -L/usr/local/lib/ json_test.c -o json_test 其中 -D__STRICT_ANSI__ 是为了消除c 阅读全文

posted @ 2016-04-12 22:59 与非朋仔 阅读(726) 评论(0) 推荐(0) 编辑

2016年4月11日

python顶级执行代码

摘要: 只有主程序中由大量顶级执行代码(即没有被缩进的代码行),所有其他被导入的模块只应该又很少的顶级执行代码。 如果模块是被导入,__name__就是模块名。 如果模块是被直接执行,__name__就是__main__。 阅读全文

posted @ 2016-04-11 00:16 与非朋仔 阅读(451) 评论(0) 推荐(0) 编辑

2016年4月6日

sed学习笔记

摘要: sed 's/MA/Massachusetts/' a.txt 阅读全文

posted @ 2016-04-06 22:20 与非朋仔 阅读(95) 评论(0) 推荐(0) 编辑

第一个python实例程序

摘要: #!/usr/bin/python2.7 import os ls = os.linesep fname = raw_input("fname:"); while True: if os.path.exists(fname): print "Error:'%s' already exists" % fname ... 阅读全文

posted @ 2016-04-06 00:02 与非朋仔 阅读(235) 评论(0) 推荐(0) 编辑

2016年4月5日

type()

摘要: pi@raspberrypi ~ $ python Python 2.7.3 (default, Mar 18 2014, 05:13:23) [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> type('') >>> s = 'xyz' >>> t... 阅读全文

posted @ 2016-04-05 23:25 与非朋仔 阅读(276) 评论(0) 推荐(0) 编辑

pi

摘要: pi@raspberrypi ~ $ python Python 2.7.3 (default, Mar 18 2014, 05:13:23) [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> names = ('xupeng','yanfeng','... 阅读全文

posted @ 2016-04-05 22:59 与非朋仔 阅读(183) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页

导航