1

我在全新的14 天 Pinnacle 购物车免费试用中有两个类别(威尔士语然后英语):

“Llyfrau [书籍]”

“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}
4

1 回答 1

0

您在displayEnglish函数中的正则表达式看起来错误 - 您有:

\[([^}]+)\]

它匹配一个开头[,然后找到最长的可能不匹配的字符},然后是一个结尾]

大概}否定字符集中的 是一个错字,你的意思是].


以非常快速的 Firebug 会话为例

// existing
> "Anrhegion [Gifts] Llyfrau [Books]".match(/\[([^}]+)\]/g);
["[Gifts] Llyfrau [Books]"]

// fixed
> "Anrhegion [Gifts] Llyfrau [Books]".match(/\[([^\]]+)\]/g);
["[Gifts]", "[Books]"]
于 2012-10-09T15:05:59.023 回答