- 浏览: 46231 次
- 性别:
- 来自: 太原
最新评论
-
hyxingzi:
学习了
javaScript中firstChild IE与火狐方法的区别与兼容 -
jixuan1989:
赞! 请问楼主 “工作中使用过的struts2-jquery ...
struts2-jquery-plugin使用手册,自己写的 -
MR3CHEN:
我在使用grid的时候,出现中文乱码啊。。。就是传值到后台的时 ...
struts2-jquery-plugin使用手册,自己写的
文章列表
常用正则表达式
//匹配IPV4的IP地址//测试环境:Javascriptvar reg = /^(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9] ...
SMIL 2.0 基础教程[转]
转自:http://www.5d.cn/Tutorial/server/200205/1326.html来源:5D多媒体 | 作者:litteruser ------------------------------------------------------------------一、简介:随着流技术的成熟和广泛的应用,其优点我们有了深深的体会。但是,其不足之处也逐渐体现出来。问题的出现,就要求我们想办法来解决。SMIL正是针对目前流技术中的问题而提出来的。下面让我们来仔细看看SMIL。1、SMIL简介:SMIL是同步多媒体集成语言(Synchr ...
由于工作需要,将工作中使用过的struts2-jquery-plugin插件翻译成中文文档,供后来人完善学习!
更多插件没有完善,第一次写文档,写的不好!
方式1:
<s:url id="remoteurl1" action="business!input.action" escapeAmp="false">
<s:param name="id"><s:property value="bId"/></s:param>
<s:param name="goPage"><s:property value="page.curPage"/> ...
encodeURIComponent("这里包含汉字")不会出现乱码了
firstChild IE忽略空格 火狐不忽略空格
nextSibling 取得某节点的下一个
兼容方法:
CurrentFrame.frameItem = {
get_nextSibling : function (n) {
var y = n.firstChild;
while (y.nodeType!=1) {
y = y.nextSibling;
}
return y;
},
getFrameTable: function() {
return this.get_nextSibling($("f ...
html代码:
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<%@ page isELIgnored="false"%>
<!DOCTYPE html PUBLIC ...
/*
* Function for Theme Handling
*
*/
function changeTheme(newTheme) {
if (newTheme=='showcase')
themePathPrefix = "themes/";
else {
themeHref = $('#jquery_theme_link').attr('href');
if ($("#google").attr('checked')) {
if (themeHref.indexOf("http ...
1,建立自己的标签库tld文件
topdt-tags.tld:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0" xsi:schemaLocation ...
java 代码:
package com.topdt.message.web.action;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.struts2.convention.annota ...
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "h ...
package com.topdt.policesms.action;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import org.apache.struts2.convention.annotation.Action;
import org.apache.struts2.convention.annotation.InterceptorRef;
import org ...