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

前端之家收集整理的这篇文章主要介绍了如何使用jquery从字符串获取第一个字母前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How to get first character of string?10个答案我在jquery中的知识很差我已经提到了下面的脚本
var header = $('.time'+col).text();
alert(header);

我把字符串作为“109:00AM”,如何获得第一个字母,如1。
你可以帮我吗。

解决方法

尝试与charAt(0)喜欢
var header = $('.time'+col).text();
alert(header.charAt(0));

你也可以使用子串

alert(header.substring(1));

而且@Jai说你可以使用切片也喜欢

alert(header.slice(0,1));
原文链接:https://www.f2er.com/jquery/182959.html

猜你在找的jQuery相关文章