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

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 与非朋仔 阅读(379) 评论(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) 编辑

python

摘要: None是一个特殊的常量。 None和False不同。 None不是0。 None不是空字符串。 None和任何其他的数据类型比较永远返回False。 None有自己的数据类型NoneType。 你可以将None复制给任何变量,但是你不能创建其他NoneType对象。 阅读全文

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

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

导航