gpt4 book ai didi

Javascript 字符串 - 在某一点获取 char

转载 作者:可可西里 更新时间:2023-11-01 02:56:16 25 4
gpt4 key购买 nike

我有一个变量:

var text = "hello";

我想得到0定位的字符,所以:

var firstChar = text[0];

简单。在 firefox 和 chrome 中这有效。但是在 IE 中我总是返回 'undefined'

知道为什么这可能会在 IE 中发生吗?

最佳答案

在 IE(IE9 之前)中,字符串无法像数组一样访问。相反,您可以使用 charAt , 跨浏览器可用:

var text = "hello";
var firstChar = text.charAt(0);
// firstChar will be 'h'

关于Javascript 字符串 - 在某一点获取 char,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3668693/

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