gpt4 book ai didi

jquery - 如何使用jquery从字符串中获取第一个字母

转载 作者:行者123 更新时间:2023-12-03 21:29:18 25 4
gpt4 key购买 nike

我对 jquery 的了解很差。我已经提到了下面的脚本

var header = $('.time'+col).text();
alert(header);

我从如何获取第一个字母(例如 1)中得到了字符串“109:00AM”。你能帮我一下吗?

最佳答案

尝试使用charAt(0),例如

var header = $('.time'+col).text();
alert(header.charAt(0));

您还可以使用子字符串,例如

alert(header.substring(1));

正如@Jai所说,你也可以使用slice

alert(header.slice(0,1));

关于jquery - 如何使用jquery从字符串中获取第一个字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18887742/

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