0

嗨,我得到了标题属性“Knit, Main”。目前 var 认为它是一个单词,是否有一些像 "," 这样的符号会让 var 在数组中处理它们?

title="针织,主要"

var titleIs = [this.title];
alert(titleIs.length); // at the moment this is 1
4

3 回答 3

0

使用 JavaScriptsplit函数

http://www.w3schools.com/jsref/jsref_split.asp

于 2013-04-04T21:49:16.397 回答
0

试试这个:

var titles = this.title.split(/,\s?/)
于 2013-04-04T21:50:17.080 回答
0

尝试使用这个

var titleIs = this.title; //if use this.title like string not array [this.title]
alert(titleIs.split(/,\s?/)); 
于 2013-04-04T21:52:37.487 回答