0

我以前在 jQuery 和 Javascript 中做过一些事情,但不幸的是我不是专家。我找不到任何关于如何使用尽可能少的资源来完成任务的提示。你们可能可以帮助我:

这是我想做的事情:

我想在页面上查找(使用正则表达式)所有类似于 BB 代码的元素,如下所示:

[这里的索引=参数随机数据]

然后,我想用从 ajax 调用收到的内容替换它们,如下所示:

call.php?ndex=here=参数随机数据

或我从相应的 [ndex] 标记中获取的任何参数。

到目前为止,这是我的解决方案/思考过程:

$(document).ready(function() {
    var pattern = /\[ndex\s+(.*?)\]/mg;
    var documentText = $(document.body).text();
    var matches = documentText.match(pattern);

    $('*').each(function () { 
        var searchText = this;
        if ($(searchText).children().length == 0) { 
            $.each(matches, function() {
                //here is where I would need to check for a match and make a call 
                }
            }); 
        } 
    });
});

我真的不知道如何从这里工作。我的草图看起来非常笨重和复杂。必须有一个更优雅和直接的解决方案。

非常感谢你们的帮助。:)

4

2 回答 2

1

我的建议是尽量减少 ajax 调用。首先进行搜索,然后在另一轮将每个对象替换为相应的数据。

$(document).ready(function() {
var pattern = /\[ndex\s+(.*?)\]/mg;
var documentText = $(document.body).text();
var matches = documentText.match(pattern);


$.ajax({ 
       url:'call.php',
       method:'POST',
       data: matches,
       success: function(data){
          //replace every matched element with the corresponding data
       });


}); 

您必须修改您的 call.php 以考虑到这一点,但是您节省了大量对服务器的调用,从而节省了时间

于 2012-06-30T16:57:06.743 回答
1

我会做这样的事情:

function ndex_treat(n) {
  // If element is ELEMENT_NODE
  if(n.nodeType==1)
  {
    // If element node has child, we pass them to function ndex_treat
    if(n.hasChildNodes())
      for(var i= 0; i<n.childNodes.length; i++)
        ndex_treat(n.childNodes[i]);
  }
  // If element is TEXT_NODE we replace [ndex ...]
  else if(n.nodeType==3)
  {
    var matches, elemNdex, elemText;
    // While there is one
    while(/\[ndex\s+(.*?)\]/m.test(n.nodeValue))
    {
      // Taking what's before (matches[1]), the "attribute" (matches[2]) and what's after (matches[3])
      matches= n.nodeValue.match(/^([\s\S]*?)\[ndex\s+(.*?)\]([\s\S]*)$/m)
      // Creating a node <span class="ndex-to-replace" title="..."></span> and inserting it before current text node element
      elemNdex= document.createElement("span");
      elemNdex.className= 'ndex-to-replace';
      elemNdex.title= matches[2];
      n.parentNode.insertBefore(elemNdex, n);
      // If there was text before [ndex ...] we add it as a node before
      if(matches[1]!=="")
      {
        elemText = document.createTextNode(matches[1]);
        elemNdex.parentNode.insertBefore(elemText, elemNdex);
      }
      // We replace content of current node with what was after [ndex ...]
      n.nodeValue=matches[3];
    }
  }
}

$(function(){
  // Get the elements we want to scan ( being sharper would be better )
  $('body').each(function(){
    // Passing them to function ndex_treat
    ndex_treat(this);        
  });

  // Make the ajax calls
  $('.ndex-to-replace').each(function(){
    // Don't know if necessary
    var current= this;
    $.get('call.php?ndex='+encodeURIComponent(this.title),function(data){
      $(current).replaceWith(data);
    });
  });
});

我用 node 而不是 jquery 替换,因为我发现用 jquery 在 textNode 上工作相当糟糕。如果您不在乎并且宁愿以野蛮人的方式行事,则可以简单地替换所有第一部分:

$(function(){
  // Get the elements we want to scan ( being sharper would be better )
  $('body').each(function(){
    // With no " in argument of [ndex ...]
    $(this).html( $(this).html().replace(/\[ndex\s+([^"]*?)\]/mg,'<span class="ndex-to-replace" title="$1"></span>') );
    // With no ' in argument of [ndex ...]
    //$(this).html( $(this).html().replace(/\[ndex\s+([^']*?)\]/mg,'<span class="ndex-to-replace" title='$1'></span>') );
  });

  // Make the ajax calls
  /* ... */
});
于 2012-06-30T17:29:53.363 回答