码迷,mamicode.com
首页 >  
搜索关键字:expression    ( 3928个结果
打造IE6的position:fixed整理篇
fixed真的是一个很好的属性。特别是做弹层的时候。可惜的是“国内主流浏览器”IE6大大不支持。一般的我们都会通过CSS中的表达式来解决这个问题。.fixed {position:absolute;left:expression(eval(document.documentElement.scrol...
分类:其他好文   时间:2014-04-30 13:43:11    阅读次数:341
IE6实现max-height及min-height
一、max-height:.div-max-height{max-height:270px;_height:expression(this.scrollHeight > 270 ? "270px" : "auto"); overflow-y:auto}二、min-height.div-min-hei...
分类:其他好文   时间:2014-04-29 23:37:26    阅读次数:489
读书笔记:C++ Primer系列(11)—— 表达式
定义: 表达式(expression)是由一个或多个操作数(operand)通过操作符(operator)组合而成。1. 操作符——除法(/)和求模(%)注意:除法和求模两种运算,操作数都必须是整型,包括:bool、char、short、int和long类型,以及对应的unsigned类型如果两个操...
分类:编程语言   时间:2014-04-29 23:30:13    阅读次数:504
xcode调试查看变量的值
对于IPhone开发/XCode的初学者,如何在调试时查看变量的值是很头痛的事情。因为Xcode的expression 经常无法正确显示变量的值。但是强大的GDB可以很方便的帮我们查看变量的值。当执行到某断点时,在GDB窗口中使用po就可以查看变量.(po = print object)1)查看St...
分类:其他好文   时间:2014-04-29 20:58:20    阅读次数:537
c语言学习之 程序基本结构
一个最基本的C程序由五个部分组成: 头文件 (Preprocessor commands) 函数 (function) 变量 (variable) 语句块 (statement 和 expression) 注释 (comments)例如: #include int mai...
分类:编程语言   时间:2014-04-29 19:17:50    阅读次数:457
Conceptual blockbusting - chap3 Emotional blocks
Barnyard game -- People will often avoid conceptualization, or at least avoid publicizing the output because expression of new ideas sometimes makes y...
分类:其他好文   时间:2014-04-29 17:12:24    阅读次数:501
DataTable筛选某列最大值
dt.Compute("max(列名)","");Compute函数的参数就两个:Expression,和Filter。Expresstion是计算表达式,关于Expression的详细内容请看这里“http://msdn2.microsoft.com/zh-cn/library/system.da...
分类:其他好文   时间:2014-04-29 11:31:46    阅读次数:397
Shell编程 之 条件表达式
1#!/bin/bash -2#===============================================================================3#4#FILE: condition_expression_test.sh5#6# USAGE: ./con...
分类:其他好文   时间:2014-04-29 10:15:46    阅读次数:426
3928条   上一页 1 ... 391 392 393
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!