上一页 1 2 3 4 5 6 7 ··· 28 下一页
摘要: 转自:http://www.javaeye.com/topic/288115 就table的一些常用操作做了一个综合的例子,包括行条纹 高亮 工具条提示 扩展 折叠 筛选等效果。 效果图如下: 下面我把我写的例子拆分解释一下: 1 . 行条纹 Js代码 var rowIndex = 0; $("tbody tr").each(function(index){ if($("th",this).len... 阅读全文
posted @ 2010-02-22 11:14 阿C's 阅读(361) 评论(0) 推荐(0) 编辑
摘要: .test { width:200px; padding:10px; overflow:hidden; /*不显示超过对象宽度的内容*/ text-overflow:ellipsis; /*当对象内文本溢出时显示省略标记(...)*/ white-space:nowrap; /*限制在一行内显示所有文本*/ } 阅读全文
posted @ 2010-02-22 11:02 阿C's 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 轉自: http://wangyu.javaeye.com/blog/569829/***得到几天前的时间**@paramd*@paramday*@return*/publicstaticDategetDateBefore(Dated,intday){Calendarnow=Calendar.getInstance();now.setTime(d);now.set(Calendar.DATE,no... 阅读全文
posted @ 2010-02-01 15:06 阿C's 阅读(823) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> /* <![CDATA[ */ function AdjustColumnsHeight() { // get a reference to the three DIVS that make up the columns var mainCol = window.document.getElementById('Ma... 阅读全文
posted @ 2010-01-29 08:58 阿C's 阅读(4273) 评论(0) 推荐(0) 编辑
摘要: JS关闭窗口或JS关闭页面的几种代码 JS定时自动关闭窗口 <script language="javascript"> <!-- function closewin(){ self.opener=null; self.close();} function clock(){i=i-1 document.title="本窗口将在"+i+"秒后自动关闭!"; if(i>0)se... 阅读全文
posted @ 2010-01-28 15:20 阿C's 阅读(1518) 评论(0) 推荐(0) 编辑
摘要: jquery如何退出each循环的?在回调函数里return false即可,大多数jq的方法都是如此的 ===================================返回 'false' 将停止循环 (就像在普通的循环中使用 'break')。返回 'true' 跳至下一个循环(就像在普通的循环中使用'continue')。 阅读全文
posted @ 2010-01-18 07:14 阿C's 阅读(550) 评论(0) 推荐(0) 编辑
摘要: <script>$(function(){$('#ym').val(['1980','1971','1973']);//选中多选下拉框$('#ys').val(['1971']);//选中下拉(框单选)$('input[name="g[]"]').val(['3']);//选中radio$('input[name="fav[]"]').val(['3','0','2']);//选中ch... 阅读全文
posted @ 2010-01-18 07:10 阿C's 阅读(778) 评论(0) 推荐(0) 编辑
摘要: http://buliangniu.javaeye.com/blog/524633 阅读全文
posted @ 2010-01-14 22:57 阿C's 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 阻止事件冒泡 在html中触发的事件会往上冒泡,直到最上层.比如Click me, twice alert源码:<div onclick="alert('div is clicked')"><a onclick="alert('a is clicked'); return false;" href="#">Click me, twice alert</a><... 阅读全文
posted @ 2010-01-05 07:28 阿C's 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 第一步:下载jdk和tomcat:JDK下载 Tomcat下载最新的jdk为1.6.10,tomcat为6.0,建议jdk1.4以上,tomcat4.0以上第二步:安装和配置你的jdk和tomcat:执行jdk和tomcat的安装程序,然后设置按照路径进行安装即可。1.安装jdk以后,需要配置一下环境变量,在我的电脑->属性->高级->环境变量->系统变量中添加以下环境变量... 阅读全文
posted @ 2009-11-23 19:06 阿C's 阅读(266) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 28 下一页