我的全新14 day Pinnacle cart free trial中有两个类别,其中两个类别(威尔士语然后是英语):
“ Llyfrau [书籍]”
“ Anrhegion [礼物]”
我需要一个函数来删除不需要的语言。我已经将其用于产品说明,但不适用于类别。
在威尔士,我越来越
“ ANRHEGION”
“ ANRHEGION”
和英语:
“礼物”
“礼物”
这是不完全存在的代码!我认为这是我认为不太正确的功能-.panel-catalog-categories .content ul li a span
???
编辑-这是我从全新安装中添加的所有代码:
{if $current_language.language_id == "1"}
{literal}
<script type="text/javascript">
(function($,h,c){var a=$([]),e=$.resize=$.extend($.resize,{}),i,k="setTimeout",j="resize",d=j+"-special-event",b="delay",f="throttleWindow";e[b]=250;e[f]=true;$.event.special[j]={setup:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.add(l);$.data(this,d,{w:l.width(),h:l.height()});if(a.length===1){g()}},teardown:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.not(l);l.removeData(d);if(!a.length){clearTimeout(i)}},add:function(l){if(!e[f]&&this[k]){return false}var n;function m(s,o,p){var q=$(this),r=$.data(this,d);r.w=o!==c?o:q.width();r.h=p!==c?p:q.height();n.apply(this,arguments)}if($.isFunction(l)){n=l;return m}else{n=l.handler;l.handler=m}}};function g(){i=h[k](function(){a.each(function(){var n=$(this),m=n.width(),l=n.height(),o=$.data(this,d);if(m!==o.w||l!==o.h){n.trigger(j,[o.w=m,o.h=l])}});g()},e[b])}})(jQuery,this);
jQuery(document).ready(function()
{
//call remove brackets if english
// Product page- Common
// Description .page-product .product-description
displayEnglish(".product-description .product-page-block-content");
// .catalog-product-title"); ???
// .panel-catalog-categories .title ????
displayEnglish(".panel-catalog-categories .content ul li a span");
//function to select english
function displayEnglish(text_selector) {
if($(text_selector).length> 0) {
var english_text = $(text_selector).text().match(/\[([^/]]+)\]/g);
jQuery(text_selector).text(english_text[0].slice(1, -1));
}
}
});
</script>
{/literal}
{else}
{literal}
<script type="text/javascript">
(function($,h,c){var a=$([]),e=$.resize=$.extend($.resize,{}),i,k="setTimeout",j="resize",d=j+"-special-event",b="delay",f="throttleWindow";e[b]=250;e[f]=true;$.event.special[j]={setup:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.add(l);$.data(this,d,{w:l.width(),h:l.height()});if(a.length===1){g()}},teardown:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.not(l);l.removeData(d);if(!a.length){clearTimeout(i)}},add:function(l){if(!e[f]&&this[k]){return false}var n;function m(s,o,p){var q=$(this),r=$.data(this,d);r.w=o!==c?o:q.width();r.h=p!==c?p:q.height();n.apply(this,arguments)}if($.isFunction(l)){n=l;return m}else{n=l.handler;l.handler=m}}};function g(){i=h[k](function(){a.each(function(){var n=$(this),m=n.width(),l=n.height(),o=$.data(this,d);if(m!==o.w||l!==o.h){n.trigger(j,[o.w=m,o.h=l])}});g()},e[b])}})(jQuery,this);
jQuery(document).ready(function()
{
//call remove brackets if english
displayWelsh(".product-description .product-page-block-content");
displayWelsh(".panel-catalog-categories .content ul li a span");
//function to select welsh
function displayWelsh(text_selector) {
if($(text_selector).length> 0) {
var welsh_text = $(text_selector).text().replace(/\[([^/]]+)\]/g, "");
jQuery(text_selector).text(welsh_text);
}
}
});
</script>
{/literal}
{/if}
最佳答案
您在displayEnglish
函数中的正则表达式看起来不正确-您具有:
\[([^}]+)\]
与开头的
[
匹配,然后查找非}
的最长字符,然后找到结尾的]
。否定字符集中的
}
可能是拼写错误,而您的意思是]
。以快速的Firebug会话为例
// existing
> "Anrhegion [Gifts] Llyfrau [Books]".match(/\[([^}]+)\]/g);
["[Gifts] Llyfrau [Books]"]
// fixed
> "Anrhegion [Gifts] Llyfrau [Books]".match(/\[([^\]]+)\]/g);
["[Gifts]", "[Books]"]