作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我通常这样做:
var str = "hello_blue_world";
var arr = str.split("_");
var target = arr[1];
但是因为我不需要 arr
,所以我注意到我可以这样做:
var str = "hello_blue_world";
var target = str.split("_")[1];
我的问题:
最佳答案
两者都是。它安全且受支持。
http://www.ecma-international.org/ecma-262/5.1/#sec-15.5.4.14
Returns an Array object into which substrings of the result of converting this object to a String have been stored
如果这是真的,你的 str.split("_")
计算为数组,你应该能够使用 [x]
来获取任何返回的元素.
关于javascript - 将字符串拆分为数组然后在 1 行中获取元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21894279/
我是一名优秀的程序员,十分优秀!