困惑一:window.color = "red";
var o = {color: "blue"};
function sayColor(){
alert(this.color);
}
sayColor(); //red
sayColor.call(this); //red
sayColor.call(window); //red
sayColor.call(o); //bl...
分类:
编程语言 时间:
2014-05-22 12:32:53
阅读次数:
255
题目:
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 a word?
A sequence of non-spa...
分类:
其他好文 时间:
2014-05-18 04:12:07
阅读次数:
198
CSS的命名空间是大小写敏感的;选择器在HTML不区分大小写,在XML中大小写敏感。1.
元素选择器它是最常见也是最基本的 CSS 选择器,文档的元素就是最基本的选择器。html {color:black;}h1 {color:blue;}h2
{color:silver;}在 W3C 标准中,元素...
分类:
Web程序 时间:
2014-05-18 00:28:41
阅读次数:
417
区别不同浏览器的CSShack写法:区别IE6与FF:background:orange;*background:blue;区别IE6与IE7:background:green!important;background:blue;区别IE7与FF:background:orange;*backgro...
分类:
Web程序 时间:
2014-05-17 19:30:27
阅读次数:
339
看了张一飞大神的论文,开始找题做,上面提到的一个就是ecnu上的题链接:http://www.acm.cs.ecnu.edu.cn/problem.php?problemid=1328题目大意:给定red、green、blue三种长度分别为c、z、n的矩形条纹,要求用这三种矩形条纹来cover大小为...
分类:
其他好文 时间:
2014-05-17 18:23:23
阅读次数:
292
题目: Given an input string, reverse the string word
by word. For example, Given s = "the sky is blue", return "blue is sky
the".解题思路: 1、先对字符串进行一次总...
分类:
其他好文 时间:
2014-05-16 05:44:30
阅读次数:
263
"http://www.w3.org/TR/html4/loose.dtd">
-->
.red{width:100px;height:100px;background:red;}
.blue{width:100px;height:100px;background:blue;}...
分类:
其他好文 时间:
2014-05-15 23:16:15
阅读次数:
379
题目: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 constitu...
分类:
其他好文 时间:
2014-05-13 22:45:04
阅读次数:
317
其题目如下:#pragma pack(2)class A{public: int
i; union U { char buff[13]; int i; }u; void foo() { } typedef char*
(*f)(void*); enum{red, green, blue} ...
分类:
其他好文 时间:
2014-05-12 21:18:19
阅读次数:
321
.x-column-header{//更改grid表头样式 color:blue;
font-size:12px;}
分类:
Web程序 时间:
2014-05-12 02:36:10
阅读次数:
760