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

时间:2015-06-01 19:43:36

标签: javascript jquery html css

我想找到$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>

2 个答案:

答案 0 :(得分:2)

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

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

答案 1 :(得分:0)

您应首先定义您正在寻找文本。

$someVariable = $("selector").text();

然后你可以使用count来获得空格数。

$charCount = $someVariable.count(" ");

希望这会有所帮助。