- 浏览: 781953 次
- 性别:
- 来自: 北京
最新评论
-
coosummer:
推荐使用http://buttoncssgenerator.c ...
jquery button 漂亮 -
thinktothings:
Array_06 写道你好,我是一名刚毕业学生,我以后就是做J ...
如何转型架构师 -
thinktothings:
软考,考有职业资格证,有系统的知识体系学习
如何转型架构师 -
Array_06:
你好,我是一名刚毕业学生,我以后就是做Java的架构师,那请问 ...
如何转型架构师 -
beykery:
你这也太复杂了。。。。jsf2不应该是这样的。。。。
JSF2.0的一个简单Demo
文章列表
Form Plugin API
http://www.malsup.com/jquery/form/#api
Form Plugin API
The Form Plugin API provides several methods that allow you to easily manage form data and form submission.
ajaxForm
Prepares a form to be submitted via AJAX by adding all of the necessary event listeners. It d ...
<script type="text/javascript">
function submintForm(){
window.top.tb_remove();
//window.top.frames['frame_content'].reload();
//window.parent.frames('frame_content').reload();
//top.frames['frame_content'].reload();
//top.frames['frame_content'].document.locati ...
http://blog.csdn.net/panys/article/details/3838846
java.sql.SQLException: ORA-00257: archiver error. Connect internal only, until freed.
ORA-00257: archiver error. Connect internal only, until freed 错误的处理方法
分类: SQLServer&Oracle2009-01-20 10:28 11077人阅读
js 文本框只能输入整数
- 博客分类:
- js
<html>
<body>
<script type="text/javascript">
function noNumbers(e)
{
var keynum
var keychar
var numcheck
if(window.event) // IE
{
keynum = e.keyCode
}
else if(e.which) // Netscape/Firefox/Opera
{
keynum = e.which
}
keychar = String.fromC ...
jquery请求后台返回map格式的json数据,key名带点
alert(returnData["bean.proxy_sex"]);
jqgrid 表格插件 http://www.trirand.com/blog/
public static void main(String[] args) {
// ApplicationContext apc = new ClassPathXmlApplicationContext("spring.xml");
// JdbcTemplate jdbc = apc.getBean(JdbcTemplate.class);
//
// Map<String, String> params = new HashMap<String, String>();
// NamedParameterJdb ...
eclipse安装 jetty
- 博客分类:
- 开发工具
help: soft update
jetty - http://run-jetty-run.googlecode.com/svn/trunk/updatesite
public String execute() throws Exception {
String url = "/WEB-INF/pages/publicservice/applyonline/product/showActivity/screenInfo.jsp";
HttpServletResponse response = ServletActionContext.getResponse();
HttpServletRequest request = ServletActionContext.getRequest();
r ...
/**
* 请在对应区域加代码
* find list 查找集合区
* add object 增加对象区
* edit object 修改对象区
* delete object 删除对象区
* find object 查找对象区
* function 功能集合区
*/
/***
* find list 查找集合区
*/
//end find list 查找集合区
/***
* add object 增加对象区
*/
//end ...
js 复选框选中 struts taglib
- 博客分类:
- js
$("#id_is_adult").attr("checked",true); //复选框选中
$("#id_is_adult").attr("checked",
"checked ); //复选框选中
$("#id_is_adult").attr("checked",false);//复选框未选中
最近我也在研究这个
{ name : 'stgpm', index : 'stgpm', sorttable : false, formatter : function(val, opts, rowdata) { return (rowdata.gpm / rowdata.s ...
转原文件:http://blog.csdn.net/liangzhongqin/article/details/6400452
js 暂停执行
//js暂停函数
function Pause(obj,iMinSecond){
if (window.eventList==null) window.eventList=new Array();
var ind=-1;
for (var i=0;i<window.eventList.length;i++){
...
jquery 1.8 中文文档 http://yhz61010.github.com/jquery/index.html
jquery清空表单数据
- 博客分类:
- jquery
jquery清空表单数据 (包括文本框,多文本框,和复选框)
//这样写不行,会把按钮和其它传的值给去掉
function clearFormValue(){
$("input").attr("value","");
$("input").attr("checked",false);
$("textarea").attr("value","");
}
//正确方法
functio ...