如果我得到两个用“-”分隔的值,例如:
"first value-second value"
在 JS 中找到两者的好方法是什么?
谢谢!
var str = "first value-second value",
arr = str.split('-');
console.log(arr[0]); //'first value'
console.log(arr[1]); //'second value'
split() 方法用于将字符串拆分为子字符串数组,并返回新数组。
var str = "first value-second value",
var value = str.split("-");
alert(value[0]);// print first value
alert(value[1]);// print second value