读书人

Jquery.Form的交付

发布时间: 2012-10-29 10:03:53 作者: rapoo

Jquery.Form的提交
在网上找了很多方法,可是$('#form1').submit(){}方法始终无法提交,于是只好退而求其次采用$("#button").click(){}来提交

PrintWriter pw = null;String message = "1"; // 操作提示信息,1表示存在,0表示不存在try{pw = response.getWriter();}catch(Exception e){message = e.getMessage();}if(null != pw){pw.print(message); // 将错误信息返回前台pw.flush();pw.close();}

读书人网 >Web前端

热点推荐