位图和矢量图

摘要: 位图:由一个一个像素组成矢量图:有数学向量方式组成 阅读全文
posted @ 2015-04-08 22:41 含风一笑 阅读(51) 评论(0) 推荐(0)

Excel 导入导出功能

摘要: jsp页面提供导入链接和模板下载链接<script type="text/javascript">$(function(){$("#impUsers").click(function(){if($("#file").val()!=""){$("#submitform").submit();}else{alert("请选择Excel文件");}});});</script> <s:form id="submitform" act 阅读全文
posted @ 2013-01-15 09:47 含风一笑 阅读(154) 评论(0) 推荐(0)

DOM对象

摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb23 阅读全文
posted @ 2012-09-14 16:23 含风一笑 阅读(150) 评论(0) 推荐(0)

javascript中隐藏了hashcode,提供了toString方法

摘要: //The instanceof Operator//检测 某个对象是否由某个构造构造出来var date=new Date();date instanceof Date;date instanceof Object;date instanceof Number;//javascript中隐藏了hashcode,提供了toString方法 var user = { name:"zhangsan", age:22, toString:function(){ return this.name; } } if(user=="zhangsan"){ alert( 阅读全文
posted @ 2012-09-13 18:15 含风一笑 阅读(309) 评论(0) 推荐(0)