gpt4 book ai didi

jquery - 文本区域中的字符数

转载 作者:行者123 更新时间:2023-12-01 06:32:36 25 4
gpt4 key购买 nike

我不知道如何创建一个 jquery 函数来计算给定字符(例如字母“b”,小写)在页面元素(在我的例子中是预格式化的 div)内重复的次数。

有什么建议吗?

最佳答案

如下所示:-

$(document).ready(function(){
$('button').click(function(){
var countB = $('textarea').val().toUpperCase().match(/B/g);
if(countB){
console.log(countB);
console.log(countB.length);
}
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<textarea></textarea>

<button>count b</button>

关于jquery - 文本区域中的字符数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46122030/

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