- 浏览: 764999 次
- 性别:
- 来自: 南京
最新评论
文章列表
jQuery 操作 下拉框 文本框(转)
- 博客分类:
- JQuery
jquery操作下拉框
jQuery获取Select选择的Text和Value:语法解释:1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text3. var checkValue=$("#select_id").val(); //获取Select选择的Va ...
JSTL时间和数字型格式化 (转)
- 博客分类:
- jsp
<fmt:formatDate> 时间格式化
<fmt:formatDate value="date" //值[type="{time|date|both}"] //类型[dateStyle="{default|short|medium|long|full}"] //日期显示形式[timeStyle="{default|short|medium|long|full}"] //时间显示形式[pattern="customPattern"] //格式表达式[timeZone=& ...
看了很多乱七八糟的设计模式的书,最后突然发现自己把最基础的东西忘记了,所以特地温习了一下,记录下来,与大家共勉。
在Java中可以通过Integer.SIZE这样的方法直接查看基本类型所占内存空间的大小。通过一下程序就能够查看了:
Java代码
System.out.println("Integer:"+Integer.SIZE);
System.out.println("Byte:"+Byte.SIZE);
System.out.println("Long:"+Long.SIZE);
...
jstl <fmt:formatDate>(转载)
- 博客分类:
- jsp
要求${date}为date类型
如果为String 就用<td align="center"><script>document.write("${l.inputDate}".substring(0, 10));</script></td>
<%@ page language="java" contentType="text/html; charset=gb18030"%><%@ taglib uri="http: ...
使用J2SE API读取Properties文件的六种方法1。使用java.util.Properties类的load()方法示例: InputStream in = lnew BufferedInputStream(new FileInputStream(name));Properties p = new Properties();p.load(in);2。使用java.util.ResourceBundle类的getBundle()方法示例: ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault());3。 ...
sprng mvc3 日期自动绑定(转)
- 博客分类:
- Spring
原文 http://blog.csdn.net/whumr1/article/details/8056285
使用spring的mvc,直接将页面参数绑定到对象中,对象中有属性为Date时会报错,此时需要处理下。
同样的,其他的需要处理的类型也可以用这种方法。
在controller中加入代码
@InitBinderprotected void initBinder(HttpServletRequest request, ServletRequestDataBinder binder) throws Except ...
import java.beans.PropertyEditorSupport;import org.springframework.util.StringUtils;/** * * @author 程栋栋 int 2011-4-9 类型转换器 * */public class MyEditor extends PropertyEditorSupport { @Override public void setAsText(String text) throws IllegalArgumentException { if(text == null ||text.equals(&quo ...
EasyUI的Tabs,如果你在Tab中使用了<iframe>显示Tab页面内容,在关闭Tab后,iframe所占用的内存并不能得到释放,直到浏览器关闭。当Tab操作得越多,内存占用就越大,很多人痛苦于此。下面给出一个更有效翻译Tab所占用内存的解决方法:
if (你使用的是未经压缩的EasyUI)
{
打开jquery.easyui.js,
今天经理交给我一个任务,让我在服务器上再装一个测试用的tomcat,因为我们的系统中有用到调用移动CMPP短信接口给客户发短信的功能,限制了IP,只能在服务器上调试。没辙,以前也想过在自己的机器上同时跑两个tomcat,以为只要改一下端口号就没问题,其实这只是其中的一步而已。 当第一个tomcat启动后,后面tomcat的server.xml中的端口不管怎么改,仍然会报端口冲突。后来在dos下运行才发现所有的tomcat都会去找 CATALINA_HOME和CATALINA_BASE这两个环境变量,因此步骤如下: 1.使用压缩版的tomcat不能使用安装版的。 2.第一个tomcat的配置 ...
JSP & IE 禁止 缓存问题
- 博客分类:
- 浏览器缓存
1.jsp页面加<head> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> </head>2.【IE浏览器】工具--设置internet选项---常规----浏览历史记录----设置- ...
【1、最基本的弹出窗口代码】
其实代码非常简单:
<script language="javascript">
window.open ('page.html')
</script>
因为着是一段javascripts代码,所以它们应该放在<script language="javascript">标签和</script>之间。<!-- 和 -->是对一些版本低的浏览器起作用,在这些老浏览器中不会将标签中的代码作为文本显示出来。要养成这个好习惯啊。
window.open ('pag ...
Uploadify上传报错uncaught exception: ID SWFUpload_0 is already in use.
版本:Uploadify v3.2
uncaught exception: ID SWFUpload_0 is already in use. The Flash Object could not be added
Uploadify上传报错SWFUpload_0已存在
一般是由于引用了两遍jquery.uploadify.js造成的,
问题分析:
用eclipse把jquery.uploadify.js 72行格式化,选中72行,Ctrl ...
Eclipse Error - An internal error occurred during: "Requesting JavaScript AST(转)
- 博客分类:
- Eclipse&MyEclipse
Eclipse Error - An internal error occurred during: "Requesting JavaScript AST from selection"解决方案
用 Eclipse Helios或者Eclipse indigo 编写Javascript函数中出现 return 时。
错误提示:
An internal error occurred during: "Requesting JavaScript AST from selection".
java.lang.NullPointerExcepti ...
Spring MVC
严重: Servlet.service() for servlet [FrankDemo] in context with path [/FrankDemo] threw exception [Could not resolve view with name '/frank' in servlet with name 'SDS'] with root causejavax.servlet.ServletException: Could not resolve view with name 'product/info/moveDownImageDetailForSess ...
工具 -》 选项 -》 隐私 -》历史 Firefox 将会 选【使用自定义历史记录设置】 选中当firefox关闭时清楚历史记录