码迷,mamicode.com
首页 >  
搜索关键字:blue    ( 1833个结果
jQuery 遍历 - eq() 和siblings() 方法
eq() 方法将匹配元素集缩减值指定 index 上的一个。 通过为 index 为 2 的 div 添加适当的类,将其变为蓝色: div { width:60px; height:60px; margin:10px; float:left; border:2px solid blue; } .blue { background:blue; } ...
分类:Web程序   时间:2014-10-21 21:36:56    阅读次数:241
javascript 学习日记
alert(0.1?+?0.2);?//不是0.3 alert(NaN?+?NaN);?//不是false? alert(isNaN(NaN));?//true alert(isNaN(1));?//false alert(isNaN(‘1‘));?//false alert(isNaN(‘blue‘));?//true alert(isNaN(true));?...
分类:编程语言   时间:2014-10-21 12:31:39    阅读次数:147
指针数组、数组指针、函数指针、指针函数总结
指针数组 && 数组指针 char (*ptr)[5]; //定义一个指向数组指针ptr,指向包含5个char类型的数组 char *a[5]; //定义一个指针数组a,包含5个char*类型指针 #include int main(void) {     char *a[5]={"red","white","blue","dark","green"};     print...
分类:编程语言   时间:2014-10-21 12:15:22    阅读次数:182
[LeetCode]Sort Colors
题目描述:Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order re...
分类:其他好文   时间:2014-10-21 00:43:54    阅读次数:304
关于WPF中TextBox使用SelectAll无效的问题的解决办法
1.首先保证你设置的SelectionBrush不是透明的颜色或者和背景色相同2.在使用SelectAll之前要保证Textox以及获取到焦点。this.textbox.SelectionBrush = Brushes.Blue;this.textbox.Focus();this.textbox.S...
分类:Windows程序   时间:2014-10-20 16:49:51    阅读次数:316
Css样式兼容IE6,IE7,FIREFOX的写法
根据FF和IE对一些符号识别的差异,我们可以单独对FF以及IE定义样式,例子:区别IE6与FF: background:orange;*background:blue; 区别IE6与IE7: background:green!important;background:blue; 区别IE7与...
分类:Web程序   时间:2014-10-20 09:54:55    阅读次数:235
Reverse Words in a String
Reverse Words in a StringGiven an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".c++版:...
分类:其他好文   时间:2014-10-19 21:19:33    阅读次数:255
Reverse Words in a String
Reverse Words in a StringGiven an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the". 1 cl...
分类:其他好文   时间:2014-10-19 02:41:38    阅读次数:197
Qt杂项设置(QLabel超链接、图片缩放、窗口不在任务栏显示并置顶等)
1.使用代码设置渐变QLinearGradient linearGrad(QPointF(0, 0), QPointF(200, 200));linearGrad.setColorAt(0, Qt::blue);linearGrad.setColorAt(1, Qt::white);linearGr...
分类:其他好文   时间:2014-10-18 15:12:39    阅读次数:268
多浏览器CSS样式解决方法
一、CSS HACK1、在同一个CSS样式表中,使用 !important 来定义不同的值以适应Firefox和IE,例如:#box { color:red !important; color:blue; }(注意这里IE6是无法识别!important 这个标记的,但它会识别pad...
分类:Web程序   时间:2014-10-18 11:01:59    阅读次数:186
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!