|
@@ -174,7 +174,10 @@ var reloadFunc = function(){
|
|
|
//当前关键词数组的位置 是数组的总长度-当前所在的位置-1 数组正序索引
|
|
|
kws_index = $('.showKeyWord li').length - $(this).parent().parent("li").index() -1;
|
|
|
if($(this).prev('div').find(".addition").text()!=""){
|
|
|
- addition_kws = $(this).prev('div').find(".addition").text().split(" ")
|
|
|
+ $(this).prev('div').find(".addition").each(function(){
|
|
|
+ addition_kws.push($(this).text())
|
|
|
+ })
|
|
|
+ //addition_kws = $(this).prev('div').find(".addition").text().split(" ")
|
|
|
}else{
|
|
|
addition_kws = []
|
|
|
}
|