码迷,mamicode.com
首页 >  
搜索关键字:hide    ( 2565个结果
SOJ 1027 MJ,Nowhere to Hide
题目大意:输入n行(id, ip)对,对同一个ip,第一次出现的ip对应的id为Main_ID, 第二次出现的ip对应的id为MJ_ID, 输出n / 2个(Main_ID, MJ_ID)对,输出格式为 MJ_ID is the MaJia of Main_ID,输出按Main_ID的字典序输出。当...
分类:其他好文   时间:2015-09-23 21:17:56    阅读次数:186
uploadify 插件,去了进度条
$("#uploadify").uploadify({ 'onInit': function () { //载入时触发,将flash设置到最小 $("#uploadify-queue").hide();...
分类:其他好文   时间:2015-09-23 19:24:02    阅读次数:144
SQL Server – Show/Hide Results Pane in Management Studio 2012
In earlier version of SQL Server Management Studio (2005, 2008 and 2008 R2) you can show/hide results pane using keyboard shortcutCtrl+R. This shortcu...
分类:数据库   时间:2015-09-23 15:07:53    阅读次数:255
How to customize Skin Gallery - Remove / rename skins and groups
1. REMOVE (HIDE) A SPECIFIC SKINTraverse through thegallery groupcollection, then through itsgallery itemcollection and hide a corresponding item:priv...
分类:其他好文   时间:2015-09-23 10:34:31    阅读次数:206
Extjs中设置只读的样式问题
废话不多说,直接上代码: view.down('#imageFile').hide(); view.down('#save_button').hide(); view.show(); view.down('form #contentPanel').items.each(function(item, ...
分类:Web程序   时间:2015-09-19 12:12:43    阅读次数:178
JQuery常用方法
JQuery常用方法1、 $("#yc1").toggle();//如果元素已隐藏,则运行 show()。如果元素可见,则元素 hide()。这样就可以创造切换效果。2、$('#btn').unbind("click"); //移除click $('#btn').unbind(); //移除所有 $...
分类:Web程序   时间:2015-09-17 14:56:18    阅读次数:137
jquery 二级导航
$(function(){$(".userhover").hover(function(){$(this).children(‘ul‘).stop(true,true).show(300);},function(){$(this).children(‘ul‘).stop(true,true).hide(300);})})<divclass="userhover">当前用户<ulclass="userdown"><li><a>用户注销</a&..
分类:Web程序   时间:2015-09-16 20:21:56    阅读次数:164
前台分页,感觉一般还能优化
a是第几页,每页显示10条 tr是显隐function xh(a){ $("tr[id^='tr']").hide(); for(var i=a*10-10;i<a*10;i++){ $("#tr_"+i).show(); } } $(function() { $("tr[id^='...
分类:其他好文   时间:2015-09-15 23:29:13    阅读次数:209
jquery callback
用处:http://blog.csdn.net/tjcyjd/article/details/6741882$('.scroll').on('click', function(){ $(this).hide('slow'); alert('先alert,再隐藏');})$('.scroll').on...
分类:Web程序   时间:2015-09-14 21:01:02    阅读次数:174
jquery 效果
1、show:显示隐藏的匹配元素比如,以后显示,不再用css('display', 'block')了还有回调函数,在动画完成时执行,每个元素执行一次2、hide:隐藏显示的元素3、toggle:切换4、slideDown5、slideUp6、slideToggle7、fadeIn:淡入8、fade...
分类:Web程序   时间:2015-09-14 00:29:31    阅读次数:129
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!