gpt4 book ai didi

javascript - 使用正则表达式组合两个 HTML 数据值

转载 作者:行者123 更新时间:2023-12-01 00:46:49 24 4
gpt4 key购买 nike

我正在尝试将两个 HTML 数据合并到一个 HTML 标记中。我正在尝试使用正则表达式来做到这一点。

HTML 看起来像这样

var temp = document.getElementById('data').innerHTML;


console.log(temp);
<div id="data">
<strong>20 </strong>
<strong>0 </strong>
<strong>0 /-</strong>
</div>

我的expexted输出是<strong>2000/-</strong>

最佳答案

// you should get the textContent instead of the innerHTML
var temp = document.getElementById('data').textContent;

// removes all spaces and
// surrounds the output with the <strong> element
var newhtml = `<strong>${ temp.replace(/\s/g,'') }</strong>`;

// replaces the innerHTML of the data with newhtml
document.getElementById('data').innerHTML = newhtml
<div id="data">
<strong>20 </strong>
<strong>0 </strong>
<strong>0 /-</strong>
</div>

关于javascript - 使用正则表达式组合两个 HTML 数据值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57285910/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com