1

私の新しい14日間のPinnacleカートの無料トライアルには、2つのカテゴリ(ウェールズ語、次に英語)の2つのカテゴリがあります。

「リフラウ[本]」

「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}
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 に答える