gpt4 book ai didi

javascript - 如何计算 Div 中包含的字符串中的空格数?

转载 作者:行者123 更新时间:2023-11-28 16:34:39 26 4
gpt4 key购买 nike

我想找到 $measurediv 中文本中包含的空白/空格的数量。感谢您对此提供的帮助。

<html>
<div id="welcomeMsgDiv" style="width:210px;">
<h2 style="font-family:Arial;font-size:17px;font-weight:bold">Welcome,
First Name Last Name!</h2>

</div>

<script type="text/javascript">
$origdiv = $('div#welcomeMsgDiv');
$measurediv = $origdiv.clone();
</script>
</html>

最佳答案

有很多方法可以做到这一点。例如(对于任何类型的空间):

var nbBlankSpaces = $measurediv.text().match(/\s/g).length

关于javascript - 如何计算 Div 中包含的字符串中的空格数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30581915/

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