- 浏览: 442961 次
- 性别:
- 来自: 苏州
最新评论
-
huguyue1988:
怎么样可以判断访问的音乐加载完成了呢?我的界面要加载多个这个的 ...
jPlayer的一些用法 -
永不悔你:
[color=yellow][/c[*][img][/img] ...
MyEclipse 9.0运行速度优化 -
tianyalinfeng:
这个教程里都有吧
jquery 筛选器 -
mengfei86:
你太牛了,我找了半天的问题,你一句代码搞定了,谢了,id^, ...
jquery 筛选器
文章列表
struts2使用UrlRewriteFilter时报错
The Struts dispatcher cannot be found. This is usually caused by using Struts tags without the associated filter. Struts tags are only usable when the request has passed through its servlet filter, which initializes the Struts dispatcher needed for this tag. - [unknow ...
样式后面加上!important字样,确保该样式的优先级,不被其他样式覆盖
#content p{
font-size: 1.8em !important;
}
package {
import flash.display.Sprite;
import flash.events.TimerEvent;
import flash.geom.Point;
import flash.utils.Timer;
import flash.text.TextField;
import flash.text.TextFieldAutoSize;
import flash.text.TextFormat;
public class Main exten ...
js查看object对象的属性结构
- 博客分类:
- Js
function lookProperty(obj){
var ob=eval(obj);
var property="";
for(var p in ob){
property+=p+"\n";
}
alert(property);
}
max-width:600px; //IE7、FF等其他非IE浏览器下最大宽度为600px;
width:expression(document.body.clientWidth>600?"600px":"auto"); //当图片大小大于600px,自动缩小为600px;
public static String trimHtml(String input) {
if (input == null || input.trim().equals("")) {
return "";
}
String str = input.replaceAll("\\&[a-zA-Z]{1,10};", "").replaceAll(
"<[^>]*>", "");
str = str.replaceAll("[(/ ...
java类中获取classes文件夹路径
- 博客分类:
- Java
例如:Test.java
在Test中获取项目classes文件夹路径
Test.classLoader.getResource("").getPath()
<defaultCache
maxElementsInMemory="10000"//缓存中最大允许创建的对象数
eternal="false"//缓存中对象是否为永久的,如果是,超时设置将被忽略,对象永不过期
timeToIdleSeconds="120"//缓存数据钝化时间(设置对象在它过期之前的空闲时间)
timeToLiveSeconds="120" //缓存数据生存时间(设置对象在它过期之前的生存 ...
js平滑返回顶部功能
- 博客分类:
- Js
head里添加
<style type="text/css">
.backToTop {
display: none;
width: 18px;
line-height: 1.2;
padding: 5px 0;
background-color: #000;
color: #fff;
font-size: 12px;
text-align: center;
position: fixed;
_position: absolute;
right: 10px;
bo ...
所需文件
1. ZeroClipboard.js
2. ZeroClipboard.swf
使用
1. 设置好ZeroClipboard.swf的位置,可在ZeroClipboard.js中修改,也可调用ZeroClipboard.setMoviePath方法
2. var clip = new ZeroClipboard.Client();
3. 设置好透明flash层
var movie = clip.getHTML(24,14);//可自定义长宽
document.write("<div id='movieDiv' style='position: ...
struts2 iterator 排序
- 博客分类:
- Struts
<s:bean id="myComparator" name="com.sample.util.MyComparator"></s:bean>
<s:sort comparator="myComparator" source="list">
<s:iterator status="st"> </s:iterator>
</s:sort>
package com.sample.u ...
<s.c.r.i.p.t type="text/javas.c.r.i.p.t"> jQuery.noConflict(); //将变量$的控制权让渡给prototype.js jQuery(function($){ //使用jQuery $("p").click(function(){ //继续使用 $ 方法 alert( $(this).text() ); }); }); $("pp").style.display = 'none'; //使用prototype </s.c.r.i.p.t>
<%! int a = 0; %>
当jsp编译为servlet时,a是一个全局变量,此时还可以为a加修饰符,如 <%! private static int a = 0; %>
<% int a = 0; %>
当jsp编译为servlet时,a只是某个方法里的局部变量
斐波那契序列
F(1)=1, F(2)=2, 对n>=2, 有F(n) = F(n-1) + F(n-2)
private static int recursiveMax(int[] a, int n) {
if (n == 1) {
return a[0];
}
return Math.max(recursiveMax(a, n - 1), a[n - 1]);
}