/*==========限制图片大小======避免页面撑暴========*/img {
max-width:100%;width:expression(width>669?"100%":width+"px");}--说明 .content
img { max-width:100%;width:e...
分类:
Web程序 时间:
2014-05-27 01:38:06
阅读次数:
292
包含文件:string.h函数名: strstr函数原型:extern char
*strstr(const char *str1, const char *str2);语法:* strstr(str1,str2)str1:
被查找目标 string expression to search.str...
分类:
其他好文 时间:
2014-05-24 06:31:32
阅读次数:
230
what is websocketsTwo-way communication over
ont TCP socket, a type of PUSH technology HTML5的新特性,用于双向推送消息(例如网页聊天,手机推送消息等)
原理:client利用regular http请求w.....
分类:
Web程序 时间:
2014-05-23 11:28:28
阅读次数:
560
using System;using System.Collections.Generic;using
System.Data.Entity.Infrastructure;using System.Linq;using
System.Linq.Expressions;using System.Tex...
分类:
其他好文 时间:
2014-05-22 16:50:46
阅读次数:
266
正则表达式(Regular Expression(RE))是透过一些特殊字符的排列,
用以"搜寻/取代/删除"一列或多列文字字符串, 简单的说, 正则表达式就是用在字符串的处理上面的一项"表达式". 正则表达式并不是一个工具程序,
而是一个字符串处理的标准依据, 如果想要用用正则表达式处理字符串, ...
分类:
系统相关 时间:
2014-05-22 05:17:10
阅读次数:
278
基本语法assert_stmt ::= "assert" expression [","
expression]1 assert 5 > 3 # 肯定是对的2 assert 0 > 3 # 肯定是错的下面看看扩展的,带上附加...
分类:
编程语言 时间:
2014-05-22 01:25:06
阅读次数:
340
Evaluate the value of an arithmetic expression
inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may be an
integer or another express...
分类:
其他好文 时间:
2014-05-22 00:49:57
阅读次数:
311
1OGNL概述 OGNL是对象图导航语言Object-Graph Navigation
Language的缩写,它是一种功能强大的表达式语言(Expression
Language,简称为EL),通过它简单一致的表达式语法,可以存取对象的属性,调用对象的方法,遍历整个对象的结构图,实现字段类型...
分类:
其他好文 时间:
2014-05-21 19:37:14
阅读次数:
283
EL即Expression
Language,主要的任务是帮助开发者简化获取域属性。但是一般情况下需要使用EL和JSTL结合使用。
EL隐含对象pageScoperequestScopesessionScopeapplicationScope如果在获取域属性的时候没有指定具体的域,那么逐一的查找比较...
分类:
其他好文 时间:
2014-05-19 15:56:52
阅读次数:
222
题意:
Evaluate the value of an arithmetic expression in
Reverse Polish Notation.
Valid operators are +, -, *,
/. Each operand may be an integer or another expression.
So...
分类:
其他好文 时间:
2014-05-18 08:09:15
阅读次数:
190