摘要: .big{margin-top:400px;margin-left:200px;height:120px;width:400px;background-color:#F8F8F8;border:1px solid #EFE7B6;border-radius:3px 3px 3px 3px;}.arr 阅读全文
posted @ 2012-10-27 22:34 我只是程序员 阅读(929) 评论(0) 推荐(0) 编辑
摘要: 1.boolean sort(array target_array [,int sort_flags]) :按数字和字母的顺序排序2.boolean rsort(array target_array [,int sort_flags]) :以降序对数组元素进行排序3.void asort(array 阅读全文
posted @ 2012-08-16 22:42 我只是程序员 阅读(293) 评论(0) 推荐(0) 编辑
摘要: <?php //print,echo函数print "这是我的第一个程序<br>";$word="这是我的第二个程序<br>";print $word;echo "第3个程序<br>";//printfprintf("%'*10.2f",456.7);echo "<br>";printf("%b", 阅读全文
posted @ 2012-08-10 22:30 我只是程序员 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 编辑器加载中... 对于php中,本人的看法有两种,其实不止的,只是个人的看法而已。 只需要在有需要输出的导航条的位置上放上这一句就可以完成导入导航条的功能,非常方便。 另一个方法,也是我本人不太赞同的做法,就是用iframe框架模式,分为上下两部分,上方放置导航信息,下方放置内容。 不过,我不推荐 阅读全文
posted @ 2012-04-21 20:05 我只是程序员 阅读(1485) 评论(0) 推荐(1) 编辑
摘要: 买!买!买! 如果你需要一套信用卡分销系统、网申卡系统、贷款分销系统、贷超系统、POS机系统,可以找我。 我公司开发的系统有如下优点: 1.银行家3级代理,名字Icon随便换 2.合伙人3级代理,分润比率随便配 3.分润模式随意定制,经典: 卡x家、银x家 秒配置。 4.信用卡查询直接官方对接,从不 阅读全文
posted @ 2019-09-20 16:59 我只是程序员 阅读(765) 评论(0) 推荐(0) 编辑
摘要: 信用卡分销系统、贷款分销系统、POS机分销系统、综合金融分销系统!1分钱一键部署,满足你所有运营模式 阅读全文
posted @ 2019-09-20 11:49 我只是程序员 阅读(905) 评论(1) 推荐(0) 编辑
摘要: //第一题 $(document).ready(function(){ $('#gallery').delegate('div.photo','click',function(){ $('div.photo').removeClass('selected'); $(this).addClass('selected'); }); }); //第二题... 阅读全文
posted @ 2013-12-17 22:13 我只是程序员 阅读(280) 评论(0) 推荐(0) 编辑
摘要: //第一题 $(document).ready(function(){ function stripe(){ $('#news').find('tr.alt').removeClass('alt'); $('#news tbody').each(function(){ $(this).children(':visible').has... 阅读全文
posted @ 2013-12-17 10:44 我只是程序员 阅读(253) 评论(0) 推荐(0) 编辑
摘要: //第二题 1 (function($){ $.fn.shadow=function(opts){ var options = $.extend({},$.fn.shadow.defaults,opts); return this.each(function(){ var $originalEle... 阅读全文
posted @ 2013-12-16 15:17 我只是程序员 阅读(292) 评论(0) 推荐(0) 编辑
摘要: //第一题 $(document).ready(function(){ $('#books').cycle({ timeout:3000, speed:1500, pause:true, before:function(){//回调函数 $('#slider').slider('value',$('... 阅读全文
posted @ 2013-12-04 09:33 我只是程序员 阅读(339) 评论(0) 推荐(0) 编辑
摘要: //第一题 $(document).ready(function(){ $('#dictionary').load('exercises-content.html .letter'); }); //第二题 (好像不太合理,E不能显示出来) $(document).ready(function(){ $('div.letter h3 a').hover(function(event... 阅读全文
posted @ 2013-12-02 23:07 我只是程序员 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 1 //第一题 2 $('back to top').insertAfter('div.chapter p:gt(3)'); 3 $('').prependTo('body'); 4 5 //第二题 6 $('.chapter a[href*="top"]').click(function(){ 7 $('You were ... 阅读全文
posted @ 2013-12-01 15:48 我只是程序员 阅读(290) 评论(0) 推荐(0) 编辑
摘要: //第一题 $('#container').fadeIn('slow'); //第二题 var color; $('p').hover(function(){ color = $(this).css('backgroundColor'); $(this).css('backgroundColor','yellow'... 阅读全文
posted @ 2013-11-30 10:52 我只是程序员 阅读(369) 评论(0) 推荐(0) 编辑
摘要: //第一题 $('div.author').bind('click',function(){ $(this).addClass('selected'); //console.log(123); }); //第二题 $('h3.chapter-title').dblclick(function(event){ $(event.target).parent... 阅读全文
posted @ 2013-11-29 19:20 我只是程序员 阅读(435) 评论(0) 推荐(0) 编辑