循环HTML变量并将span替换为content

Loop around HTML variable and replace spans with content

本文关键字:替换 content span HTML 变量 循环      更新时间:2023-09-26

我有一个包含HTML的变量。

var html = '<p><span id="variable:7" class="variable-source" title="variable:TEXT_CONTAINER">DATA</span> This is a variable</p>'+
'<p><span id="input:10.New Input 2" class="input-source" title="New Screen; New Input 2">DATA</span> This is a input source</p>'+
'<p>Testing</p>';

我试图循环所有的元素,并替换为跨度特定的日期。因此,任何具有variable-source类的跨度都需要替换为特定的日期,input-source也是如此。

我已经尝试使用以下命令:

$('span', html).replaceWith(function () {
    var id = $(this).attr('id');
    // this returns the correct id
    //calculations go here
    var value = 'testing';
    return value
});

输出如下:

testing This is a variable

所有的段落标签都被删除了,似乎在第一段之后就停止了。我是不是漏掉了什么?如果需要,我可以发布更多代码或解释更多。

您需要创建一个html对象引用,否则您将无法获得对更新内容的引用。然后在执行替换操作后从创建的jQuery对象中获取更新内容

var html = '<p><span id="variable:7" class="variable-source" title="variable:TEXT_CONTAINER">DATA</span> This is a variable</p>' +
  '<p><span id="input:10.New Input 2" class="input-source" title="New Screen; New Input 2">DATA</span> This is a input source</p>' +
  '<p>Testing</p>';
var $html = $('<div></div>', {
  html: html
});
$html.find('span.variable-source').replaceWith(function() {
  var id = this.id;
  // this returns the correct id
  //calculations go here
  var value = 'replaced variable for: ' + id;
  return value
});
$html.find('span.input-source').replaceWith(function() {
  var id = this.id;
  // this returns the correct id
  //calculations go here
  var value = 'replaced input for: ' + id;
  return value
});
var result = $html.html();
$('#result').text(result);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="result"></div>