-4

如果我得到两个用“-”分隔的值,例如:

"first value-second value"

在 JS 中找到两者的好方法是什么?

谢谢!

4

2 回答 2

4
var str = "first value-second value",
    arr = str.split('-');
console.log(arr[0]); //'first value'
console.log(arr[1]); //'second value' 
于 2012-11-30T13:41:21.853 回答
3

split() 方法用于将字符串拆分为子字符串数组,并返回新数组。

var str = "first value-second value",
var value = str.split("-");
alert(value[0]);// print first value
alert(value[1]);// print second value
于 2012-11-30T13:42:05.843 回答