更改列表中的文本

时间:2012-10-09 14:39:39

标签: javascript jquery list html-lists pinnacle-cart

我的全新14 day Pinnacle cart free trial有两个类别,分为两类(威尔士语,然后是英语):

  

“Llyfrau [书籍]”

     

“Anrhegion [Gifts]”

我需要一个函数来删除不需要的语言。我已经将它用于产品描述,但不适用于类别。

在威尔士我得到了

  

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

1 个答案:

答案 0 :(得分:0)

displayEnglish函数中的正则表达式看起来不对 - 你有:

\[([^}]+)\]

哪个匹配开头[,然后找到不是}的最长字符,然后是结束]

据推测,否定字符集中的}是拼写错误,您的意思是]


非常快速的Firebug会话作为示例

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

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