摘要: ACM题目中输入数据的处理(C语言版)http://blog.csdn.net/sxhelijian/article/details/8978794ACM题目中输入数据的处理(C++版)http://blog.csdn.net/sxhelijian/article/details/8978850 阅读全文
posted @ 2014-09-03 09:09 小王子2013 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-09-03 08:41 小王子2013 阅读(78) 评论(0) 推荐(0) 编辑
摘要: "JavaScript: The Definitive Guide" 16.2.1StaticThis is the default value and specifies that the element is positioned according tothe normal flow of d... 阅读全文
posted @ 2014-08-07 07:56 小王子2013 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 摘抄自《JavaScript权威指南》1.join()返回生成的字符串。数组元素转化为字符串,拼接。默认分隔符:“,”。2.reverse()返回逆序的数组,替换。数组中的元素倒序。3.sort()返回排序后的数组,替换。数组中的元素排序。无参数:按字母表排序,undefined元素尾部;参数为比较... 阅读全文
posted @ 2014-08-04 09:39 小王子2013 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 今天看了内联元素的间距:http://blog.csdn.net/hedong37518585/article/details/6657853 阅读全文
posted @ 2014-08-01 10:07 小王子2013 阅读(63) 评论(0) 推荐(0) 编辑
摘要: JQuery' post&get: asynchronous.2014-06-27 16:57:25 var client;function getClient(){ $.ajax({ url: "...", async: false, //同步方式 ... 阅读全文
posted @ 2014-07-29 15:07 小王子2013 阅读(221) 评论(0) 推荐(0) 编辑
摘要: Reference:http://www.w3schools.com/tags/tag_link.asp Attributes:AttributeValueDescriptioncharsetchar_encodingNot supported in HTML5.Specifies the char... 阅读全文
posted @ 2014-07-23 10:16 小王子2013 阅读(158) 评论(0) 推荐(0) 编辑
摘要: eg.var arr = [];arr.push(1);arr.push([2, 3]);arr.push(4, 5);arr = arr.concat(6);arr = arr.concat([7, 8]);arr = arr.concat(9, 10);for(var i=0; i<arr.le... 阅读全文
posted @ 2014-07-22 11:18 小王子2013 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 2-02-1#include int main() { int inch,foot,cm; scanf("%d",&cm); foot=cm/30.48; inch=cm*12/30.48-foot*12; printf("%d %d\n",foot,inch); ... 阅读全文
posted @ 2014-07-14 15:04 小王子2013 阅读(134) 评论(0) 推荐(0) 编辑
摘要: http://api.jquery.com/on/http://api.jquery.com/prev/tip: adding the jqm will wrap the input tab, & prev() doesn't work. add "data-role='none' " in inp... 阅读全文
posted @ 2014-07-05 12:42 小王子2013 阅读(261) 评论(0) 推荐(1) 编辑