您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop与jquery冲突的解决方法
怜梦2025-01-01 10:00:02ecshop商城教程已有人查阅
导读***ecshop在线入门手册***:解决ecshop与jquery冲突问题1、修改文件:/js/transport.js
***ecshop在线入门手册***:
解决ecshop与jquery冲突问题
1、修改文件:/js/transport.js
在文件最底部增加代码:
查找代码:
lastScrollY : 0
在代码上面一行增加代码:
/themes/temlatename/images/js/jquery.1.5.2.js
如果你的模板中没有对应目录,则新建目录拷入jquery文件即可
5、修改文件:/themes/temlatename/library/page_header.lbi
在顶部加入代码:
调用系统参数:$_CFG['名字'];
发送模板导航及其他:assign_template();
引入js以及文件:{insert_scripts files="文件一,文件二"}
ecshop邮箱登陆E:\wu\ecshop\includes\modules\integrates
library库文件 .lbi
<!--滚动开始-->
页面滚动事件
2、开启事务 begin work;
3、(一)排它锁 select * from 表名 where id=1 for update;
(二)共享锁 select * from 表名 where id=1 lock in share mode;
4、当事物提交后结束 commit;
解决ecshop与jquery冲突问题
1、修改文件:/js/transport.js
在文件最底部增加代码:
if (Object.prototype.toJSONString){ var oldToJSONString = Object.toJSONString; Object.prototype.toJSONString = function(){ if (arguments.length > 0){ return false; }else{ return oldToJSONString.apply(this, arguments); } } }
2、修改文件:/js/compare.js查找代码:
this.timer = window.setInterval(this.relocation.bind(this), 50);
修改为:
this.timer = window.setInterval(this.bind(this.relocation,this), 50);
查找代码:lastScrollY : 0
在代码上面一行增加代码:
bind : function(obj1,obj2) { return function() { obj1.apply(obj2, arguments); } },
3、在以下模板文件中,找到嵌入global.js文件的代码,删除嵌入global.js
brand.dwt
brand_list.dwt
category.dwt
exchange_list.dwt
search.dwt
4、下载较新版的jquery库文件到模板目录中,如:/themes/temlatename/images/js/jquery.1.5.2.js
如果你的模板中没有对应目录,则新建目录拷入jquery文件即可
5、修改文件:/themes/temlatename/library/page_header.lbi
在顶部加入代码:
<script src="images/js/jquery.1.5.2.min.js" type="text/javascript"></script>
<script type="text/javascript">var $$=jQuery.noConflict();</script>
jQuery.noConflict():jq的实现
//$data['goods_sn']='2134234';
//$data['goods_name']='好!';
//insert去掉表示插入
$GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('goods'), $data,'insert');die;
引入所用模板css样式:{$ecs_css_path}调用系统参数:$_CFG['名字'];
发送模板导航及其他:assign_template();
引入js以及文件:{insert_scripts files="文件一,文件二"}
ecshop邮箱登陆E:\wu\ecshop\includes\modules\integrates
if(is_email($username))
{
$sql = "select ".$this->field_name." from ".$this->table($this->user_table)." where ".$this->field_email."='".$username."'";
$username = $this->db->getOne($sql);
if(!$username) return false;
}
images:图片screenshot.pnglibrary库文件 .lbi
<!--滚动开始-->
页面滚动事件
$(function(){
//求按钮到顶部的距离
var h=$("#h_top").offset().top;
//alert(h);
//滚轮滚动事件
$(window).scroll(function(){
//当前滚动距离
var wt=$(this).scrollTop();
if(wt>=h){
//设置滚动
$("#h_top").offset({'top':wt})
}else{
$("#h_top").offset({'top':h})
}
})
})
<!--end滚动-->z-index:1 调节层级
date_default_timezone_set('Aisa/Shanghai');设置时区
ajax.abort();销毁ajax
sleep(1);延迟
serialize($arr);序列化
unserialize(str);反序列化
对称加密
base64_encode();
base64_decode();
//锁表
lock tables 表名 锁表类型(write,read)
//解锁
unlock tables;
//锁行(innodb)
1、关闭自动提交 set autocommit=0;2、开启事务 begin work;
3、(一)排它锁 select * from 表名 where id=1 for update;
(二)共享锁 select * from 表名 where id=1 lock in share mode;
4、当事物提交后结束 commit;
本文标签:
很赞哦! ()
上一篇:ecshop二次开发实例
随机图文
-
ecshop中ajax.call使用方法见解
ecshop中的ajax非常好用, 当自己第一次使用的时候,因为之前并没有看明白transport.js这个文件的具体内容.弄得有点迷糊. 细看了一下这个文件 在js目录下transport.js这个文件 -
ecshop4.06以上版本安装后出现激活授权码窗口的删除方法
很多人ecshop3.6 ecshop4.0安装后进不了而且还弹出后出现激活授权码窗口,今天代码号就讲解下ecshop3.6 4.0以上版本安装后进不进去和弹出激活授权窗口删除方法 -
ecshop中$user对象
有时候我们是需要把ecshop跟我们现有的项目整合,比如典型的会员系统是我们自己的,网店是ECshop的。或者,我们需要在ucenter的用户跟ECSHOP的做关联。 -
ecshop浏览记录商品图片标题宽带长度怎么修改
ecshop里面有浏览历史记录,在ecshop二次开发的时候,常常对这个地方进行调整.到不是说修改浏览历史记录的原理。而是修改ecshop浏览历史记录的数据显示方式.很简单
留言与评论 (共有 条评论) |