解决 ecshop 和 jquery 冲突
ecshop 和 jquery 冲突的问题由来已久。让我等开发人员很是头痛。
网上一搜大多说是和 transport.js 的 Object.prototype.toJSONString 冲突,解决方案大多或复杂或繁重。
只要将这段代码
if (Object.prototype.toJSONString){
var oldToJSONString = Object.toJSONString;
Object.prototype.toJSONString = function(){
if (arguments.length > 0){
return false;
}else{
return oldToJSONString.apply(this, arguments);
}
}
重新定义了冲突的 toJSONString 函数。
放到 /library/page_header.lbi 第11行后面即可。
也就是 加载 transport.js 后,再执行一次本函数就行了。
下一篇: 屏蔽ecshop云提示no_license 上一篇: 多货币解决方案
赞 (0)