JavaScript cross-browser: Is it safe to treat a st

2019-04-22 19:16发布

Is this code safe in all major browsers?

var string = '123'
alert(string[1] == '2') // should alert true

5条回答
疯言疯语
2楼-- · 2019-04-22 19:48

I tested in IE7, IE8, Safari, Chrome, and FF. All worked just fine!

EDIT just for kicks it works in Konqueror also! Js Fiddle example

查看更多
冷血范
3楼-- · 2019-04-22 19:49

It will work. It might be a problem if you decide to use browser specific functions (I.E xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); only works in internet explorer)

查看更多
Root(大扎)
4楼-- · 2019-04-22 19:59

No, it's not safe. Internet Explorer 7 doesn't support accessing strings by index.

You have to use the charAt method to be compatibale with IE7:

var string = '123';
alert(string.charAt(1) == '2');
查看更多
Explosion°爆炸
5楼-- · 2019-04-22 19:59

I don't really see why you can't do that...though alternatively, you can use .substring()

查看更多
等我变得足够好
6楼-- · 2019-04-22 20:11

Everything in JavaScript is an object; arrays, functions, strings, everything. The piece of code you put up is perfectly valid, although a little confusing - there are much better ways of doing that

var str = '123';
str[1] === '2'; // true, as you've just discovered (if you're not in IE7)
// Better ways:
str.indexOf('2'); // 1
str.charAt(1); // '2'
str.substr(1, 1); // '2'
str.split(''); // ['1', '2', '3']

The better ways make sure anyone else reading your code (either someone else or yourself in 6 months time) don't thing that str is an array. It makes your code a lot easier to read and maintain

查看更多
登录 后发表回答