私人领地
上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页
摘要: html代码 1111 css代码.user2-register-bg{padding: 10px;padding: 10px;background:rgba(0,0,0,0.3)!important;bac... 阅读全文
posted @ 2015-10-09 18:09 狂奔的蜗牛Snails 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 转载: 最近刚接触ecshop不久,感觉是非常的强大,做商城网站,整个流程都差不多搞好了,就是支付流程要自己完善完善,不过也有不足,文章功能还不够好。 通过几天的应用,总结出了ec模版中foreach的常见用法。 foreach 语法: 假如后台:$smarty->assign('test',$te 阅读全文
posted @ 2015-10-09 14:01 狂奔的蜗牛Snails 阅读(864) 评论(0) 推荐(0) 编辑
摘要: 获得商品的信息,get_goods_info($goods_id) 获取前10销量排名,get_top10() 阅读全文
posted @ 2015-10-09 10:18 狂奔的蜗牛Snails 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 把一下代码放到 lib_main.php1.统计某个下单商品的人数function get_goods_ordernum($goods_id){ $sql = "select count(goods_number) from " . $GLOBALS['ecs']->table('o... 阅读全文
posted @ 2015-10-08 18:55 狂奔的蜗牛Snails 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 找到lib_goods.php第147行,代码$sql = 'SELECT g.goods_id, g.goods_name, g.shop_price,g.goods_thumb, SUM(og.goods_number) as goods_number ' .1.替换一下代码$sql = 'SE... 阅读全文
posted @ 2015-10-08 17:36 狂奔的蜗牛Snails 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 原代码 cart category_tree history recommend_best goods_list pages 增加一个recommend_hot ,就能把非可编辑区改为可编辑区 ... 阅读全文
posted @ 2015-10-07 15:25 狂奔的蜗牛Snails 阅读(252) 评论(0) 推荐(0) 编辑
摘要: lib_mian.php前台公用函数库1.增加自定义变量 "版权所属" $copyright 或者 $smarty->assign('get_article_7', get_article_cat_id(7)); //新手入门 阅读全文
posted @ 2015-09-30 16:49 狂奔的蜗牛Snails 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 1.网页右侧地图浮动楼层,超过100px就显示$(window).scroll(function(){ if($(window).scrollTop()<100){ //距顶部多少像素时,出现返回顶部按钮 $("#floor").fadeOut(); ... 阅读全文
posted @ 2015-09-29 16:09 狂奔的蜗牛Snails 阅读(120) 评论(0) 推荐(0) 编辑
摘要: .floor-box{width: 44px; border: 1px solid #ccc; position: fixed; left: 50%; z-index: 1000}漂浮距离,距中间50%.floor-box{width: 44px; border: 1px solid #ccc; p... 阅读全文
posted @ 2015-09-29 15:55 狂奔的蜗牛Snails 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 1.function scrollTop(){ $('html,body').animate({'scrollTop':0},500);}2.$("#side-bar .gotop").click(function(){ $('html,body').animate({'sc... 阅读全文
posted @ 2015-09-29 15:52 狂奔的蜗牛Snails 阅读(292) 评论(0) 推荐(0) 编辑
摘要: {$releated_goods_data.short_name|truncate:26}{$key} {$releated_goods_data.formated_promote_price} {$releated_good... 阅读全文
posted @ 2015-09-23 11:34 狂奔的蜗牛Snails 阅读(1633) 评论(0) 推荐(0) 编辑
摘要: function getSrc(src){ document.getElementById('BigImg').src=src;} 阅读全文
posted @ 2015-09-19 18:02 狂奔的蜗牛Snails 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 适用产品详情 导航漂浮 window.onscroll = function(){ var t = document.documentElement.scrollTop || document.body.scrollTop; var Div = document.getEl... 阅读全文
posted @ 2015-09-19 18:01 狂奔的蜗牛Snails 阅读(130) 评论(0) 推荐(0) 编辑
摘要: {$goods.goods_brief|truncate:17}去掉省略号: 找到includes/lib_base.php 第63行 $newstr .= '...' 去掉... 即可 阅读全文
posted @ 2015-09-18 15:23 狂奔的蜗牛Snails 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 1111{insert_scripts files='common.js,global.js,transport.js'} 阅读全文
posted @ 2015-09-18 11:32 狂奔的蜗牛Snails 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 1.点击显示,再次点击隐藏$("#pingfen-click").click(function(){ name = document.getElementById("pf-window").className; if(... 阅读全文
posted @ 2015-09-09 15:31 狂奔的蜗牛Snails 阅读(517) 评论(0) 推荐(0) 编辑
摘要: 1、HTML结构我的类名为test_class2、javascript代码function fun(){ name = document.getElementById("test").className; alert(name);}成品案例$("#pingfen-click").clic... 阅读全文
posted @ 2015-09-09 15:27 狂奔的蜗牛Snails 阅读(6059) 评论(0) 推荐(0) 编辑
摘要: 文件:lefttime.js 位置:/js/lefttime.js要求:去掉倒计时时间的 “天”数原代码if (dateLeft > 0) { Temp = dateLeft + _day + hourZero + hourLeft + _hour + minuteZero + minute... 阅读全文
posted @ 2015-09-08 13:59 狂奔的蜗牛Snails 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 1.打开temp-》static_caches文件夹2.点击后台“清楚缓存”3.看static_caches文件夹里是否有文件删除删除-》可以更新缓存否-》 不能更新缓存 阅读全文
posted @ 2015-09-07 19:36 狂奔的蜗牛Snails 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 问题描述:1.后台产品列表能改,数据也能看到,前端就是不显示2.缓存无法删除3.网上其他方法都试过,还是不行症状:是因为缓存无法删除,无法更新,只需要能重新更新缓存文件即可。网站搬家丢失temp文件权限解决办法:temp文件需要设置everyone “全部权限” 即权限全部打勾 阅读全文
posted @ 2015-09-07 19:35 狂奔的蜗牛Snails 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 在使用ecshop后台的时候,老是自动退出,影响正常使用。解决办法: 在includes/cls_session.php中,function gen_session_key($session_id)方法里,删除掉 if ($ip == '') { $ip = substr($this->_ip, 0... 阅读全文
posted @ 2015-09-07 11:34 狂奔的蜗牛Snails 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 网站标题不更新,这种情况一般出在网站搬家的过程中,把以前的所有配置文件一起都搬到新的服务器上了。网站状态: 后台店铺标题已经修改,前台不显示,数据shop_config 的shop_title能更新解决办法:temp\static_caches\shop_config.php 删除这个缓存文件即可... 阅读全文
posted @ 2015-08-31 11:16 狂奔的蜗牛Snails 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 并加入到一下代码=后面http://cache.tv.qq.com/qqplayerout.swf?vid=例如http://cache.tv.qq.com/qqplayerout.swf?vid=o013075230b原文地址:http://jingyan.baidu.com/album/0a52... 阅读全文
posted @ 2015-08-28 14:00 狂奔的蜗牛Snails 阅读(210) 评论(0) 推荐(0) 编辑
摘要: {: $Form->editor(array('field'=>'content','moduleid'=>'231','setup'=>array('toolbar'=>'full','flashupload'=>'1')),$vo[desc])}form.php如: ... 阅读全文
posted @ 2015-08-24 18:16 狂奔的蜗牛Snails 阅读(183) 评论(0) 推荐(0) 编辑
摘要: print_r($this->Config); 阅读全文
posted @ 2015-08-24 17:22 狂奔的蜗牛Snails 阅读(439) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-08-10 10:58 狂奔的蜗牛Snails 阅读(1) 评论(0) 推荐(0) 编辑
摘要: $f = preg_match("/g3watches/",$date[0]['desc']); if ($f='1') { $this->error(L('不好意思,输入有误')); exit; } 阅读全文
posted @ 2015-08-08 10:36 狂奔的蜗牛Snails 阅读(455) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-08-05 14:48 狂奔的蜗牛Snails 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 新手开车第一步摘要:10个关键词试水、符合宝贝相关性、监测关键词是否第一页通常的来说在刚开始操作一款宝贝的时候我们会拿10个关键词来进行试水,这10个关键词如上面所说一定要符合宝贝的相关性,和搜索这个关键词能够出现在淘宝结果里面。每一个关键词都进行精准的出价让他在第一页出现就可以了,这个阶段,每天要... 阅读全文
posted @ 2015-08-05 12:03 狂奔的蜗牛Snails 阅读(136) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-08-05 12:02 狂奔的蜗牛Snails 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-08-04 16:17 狂奔的蜗牛Snails 阅读(4) 评论(0) 推荐(0) 编辑
摘要: index.phprequire_once("mysql.config.php");require_once("mysql.class.php");echo $data->f();config.phpclass.phpDB_HOST = $DB_HOST; $this->DB_NAME... 阅读全文
posted @ 2015-08-03 17:00 狂奔的蜗牛Snails 阅读(359) 评论(0) 推荐(0) 编辑
摘要: php,html{:URL('User-Register/index')} 格式:http://www.xxx.com/index.php?g=User&m=User&a=index{:URL('User/index')} 格式http://www.xxx.com/index.php?g=Hom... 阅读全文
posted @ 2015-08-03 11:08 狂奔的蜗牛Snails 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 需要配置的2个文件alipay.config.php$alipay_config['partner'] = '';//收款支付宝账号$alipay_config['seller_email'] = '';//安全检验码,以数字和字母组成的32位字符$alipay_config['... 阅读全文
posted @ 2015-08-01 17:38 狂奔的蜗牛Snails 阅读(911) 评论(0) 推荐(0) 编辑
摘要: 欢迎访问我的主页 欢迎! 转到页面二 页脚文本 我是一个对话框! 对话框与普通页面不同,它显示在当前页面的顶端。它不会横跨整个页面宽度。对话框页眉中的图标 “X” 可关闭对话框。 转到页面一 页脚文本 阅读全文
posted @ 2015-07-31 11:24 狂奔的蜗牛Snails 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 欢迎访问我的主页 Welcome! 转到页面二 页脚文本 欢迎访问我的主页 Goodbye! 转到页面一 页脚文本 多种效果网址:http://www.w3school.com.cn/jquerymobile... 阅读全文
posted @ 2015-07-31 11:23 狂奔的蜗牛Snails 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 11111 2 行内页脚 阅读全文
posted @ 2015-07-31 10:43 狂奔的蜗牛Snails 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 代码 阅读全文
posted @ 2015-07-31 10:31 狂奔的蜗牛Snails 阅读(188) 评论(0) 推荐(0) 编辑
摘要: iOS7风格的进度条 横向的滚动条 Set 竖向的滚动条 Set 阅读全文
posted @ 2015-07-30 17:58 狂奔的蜗牛Snails 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 溢出滚动基本原理还是relative,absolute. 核心高度 swiper-wrapper 和gun-swiper-slide 的自适应高度成为关键 测试下内容 一天下午,我同学在建设银行十分无聊的上班,一个穿得很糟糕的女士(神经病患者)来到他窗... 阅读全文
posted @ 2015-07-29 15:45 狂奔的蜗牛Snails 阅读(2870) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页