- 浏览: 621219 次
- 来自: 信阳
最新评论
-
贝塔ZQ:
导出数据到excel文档中,可以使用pageoffice插件实 ...
Java POI 数据导出到Excel 2010 -
熊佳佳:
key是需要向支付宝购买额度的
支付宝即时到帐接口调试入口页面 -
zhuzuofei:
你好,你代码中提供的pid,key好像是无效的...
支付宝即时到帐接口调试入口页面 -
xingxing:
光有图没有解决方案......
centOS setup 命令 设置网络参数 -
atgoingguoat:
...
Android:简单的图片浏览器
文章列表
AJAX弹出提示信息效果
- 博客分类:
- JavaScript
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>提示信息框</title>
<style type="text/css">
a {
color: #000;
font-size: 12px;
text-decoration: none
}
a:hover {
color: #900;
text- ...
JS不间断向左滚动
- 博客分类:
- JavaScript
<div id=demo
style="overflow: hidden; height: 139; width: 232; background: #f4f4f4; color: #ffffff">
<table align=0 cellpadding=0 cellspace=0 border=0>
<tr>
<td id=demo1 valign=top><img
src="http://www.lanrentuku.com/down/js/images/12460764740 ...
在用spring管理实例中使用原型模式
即:
scope="prototype"
例如
<!-- 添加店铺 -->
<bean id="addShop" class="com.baitw.struts.action.AddShop" scope="prototype">
<property name="shopDao" ref="shopDao"/>
<property name="industryDao& ...
加入默认拦截器栈
<interceptor-ref name="defaultStack"/>
版本:eclipse-jee-indigo-SR2-win32.zip
-startup
plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.100.v20110502
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermS ...
JS判断URL资源不可用
- 博客分类:
- JavaScript
<script language="javascript">
function getURL(url) {
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET", url, false);
xmlhttp.send();
if (xmlhttp.readyState == 4) {
if (xmlhttp.Status != 200)
alert("不存在");
...
用sys登入Oracle DB后,下grant create session to UserName;(UserName是登录出错的用户名)
package com.demo.service;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.LinkedList;
import java.util.Properties;
public class ChatService {
// 使用单例模式来设计CharService
private static ChatService cs;
// ...
Ajax级联下拉框菜单
- 博客分类:
- JavaScript
<script>
//构造2个数组
var detail_show = new Array();
var detail_value = new Array();
detail_show[0] = new Array();
detail_value[0] = new Array();
detail_show[0][0] = '上海';
detail_value[0][0] = '0101';
detail_show[0][1] = '北京';
detail_value[0][1] = '0102';
detail_show[0][2] = '广州 ...
5秒后自动跳转
- 博客分类:
- JavaScript
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>Insert title here</title>
< ...
验证上传图片
- 博客分类:
- JavaScript
<script language=javascript>
var ImgObj = new Image(); //建立一个图像对象
var AllImgExt = ".jpg|.jpeg|.gif|.bmp|.png|"//全部图片格式类型
var FileObj, ImgFileSize, ImgWidth, ImgHeight, FileExt, ErrMsg, FileMsg, HasCheked, IsImg//全局变量 图片相关属性
//以下为限制变量
var AllowExt = ".jpg|.gif|.doc|. ...
JS返回上一页
- 博客分类:
- JavaScript
<a href="javascript:history.go(-1);">向上一页</a>