如何使用jQuery计算字符串中的单词数
答案:使用 JavaScript split()
方法
您可以使用 JavaScript split()
方法计算或查找字符串中的单词数。 此方法只是将字符串按指定字符拆分为子字符串数组。
在以下示例中,我们还使用 trim()
方法在计算单词数之前从字符串中删除前导和尾随空格。
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery 计算字符串中的单词数</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
var words = $.trim($("textarea").val()).split(" ");
alert(words.length);
});
});
</script>
</head>
<body>
<textarea cols="50">The quick brown fox jumps over the lazy dog.</textarea>
<br>
<button type="button">Count Words</button>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: