作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
此代码在所有主流浏览器中是否安全?
var string = '123'
alert(string[1] == '2') // should alert true
最佳答案
不,这不安全。 Internet Explorer 7 不支持按索引访问字符串。
您必须使用 charAt
方法才能与 IE7 兼容:
var string = '123';
alert(string.charAt(1) == '2');
关于JavaScript 跨浏览器 : Is it safe to treat a string as array?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5599881/
我是一名优秀的程序员,十分优秀!