您好我获得了标题属性“Knit,Main”。目前var认为它是一个单词是否有一些像“,”这样的符号会使var在数组中处理它们?
title =“Knit,Main”
var titleIs = [this.title];
alert(titleIs.length); // at the moment this is 1
答案 0 :(得分:0)
使用JavaScript split
函数
答案 1 :(得分:0)
试试这个:
var titles = this.title.split(/,\s?/)
答案 2 :(得分:0)
尝试使用此
var titleIs = this.title; //if use this.title like string not array [this.title]
alert(titleIs.split(/,\s?/));