js取iframe内容 IE下操作IFrame内容的代码:document.frames["MyIFrame"].document.getElementById("s").style.color="blue";但是这在Firefox下无效。所以,想到在Firefox下用FireBug来调试。经过调试...
分类:
Web程序 时间:
2014-09-22 16:29:12
阅读次数:
189
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".Clarification:What constitutes...
分类:
其他好文 时间:
2014-09-21 17:35:30
阅读次数:
225
请见如下一个闭包示例:color = "red";var obj = { color: "blue", getColor: function () { function displayColor() { return this.color; ...
分类:
编程语言 时间:
2014-09-21 04:12:10
阅读次数:
208
Blue JeansTime Limit: 1000msMemory Limit: 65536KBThis problem will be judged onPKU. Original ID:308064-bit integer IO format:%lld Java class name:Main...
分类:
其他好文 时间:
2014-09-19 23:54:16
阅读次数:
279
DescriptionThe Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of th...
分类:
其他好文 时间:
2014-09-19 22:21:16
阅读次数:
257
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, ...
分类:
其他好文 时间:
2014-09-19 13:43:05
阅读次数:
194
彩色的贪吃蛇实现,功能强大,有等级模块,道具功能,后面有效果预览,先上代码:
console.h
#include
//颜色定义
#define FWHITE FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_GREEN|FOREGROUND_BLUE //白色前景
#define FRED FOREGROUND_INTENSIT...
分类:
其他好文 时间:
2014-09-18 13:22:24
阅读次数:
276
[leetcode]Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.Here, we will use the integers 0, 1, and 2 to represent the color red, white, and...
分类:
其他好文 时间:
2014-09-18 13:21:43
阅读次数:
164
半透明透明颜色和不透明度 (alpha) 值以十六进制表示法表示。任何一种颜色的值范围都是 0 到 255(00 到 ff)。对于 alpha,00 表示完全透明,ff 表示完全不透明。表达式顺序是“aabbggrr”,其中aa=alpha(00 到 ff);bb=blue(00 到 ff);gg=...
分类:
移动开发 时间:
2014-09-17 23:16:42
阅读次数:
216
public class TestEnum { /*最普通的枚举*/ public enum ColorSelect { red, green, yellow, blue; } /* 枚举也可以象一般的类一样添加方法和属性,你可以为它添加静态和非静态的属...
分类:
编程语言 时间:
2014-09-17 23:03:32
阅读次数:
230