2017-09-03 54 views

回答

0

您可能使用了stringsElement: #yourdiv這似乎會導致問題。 嘗試自己獲取字符串中使用:

var myitems = []; 
$('#yourdiv p').each(function (i, e) { 
    myitems.push($(e).text()); 
}); 

然後用:

"strings: items" 

代替。 希望這會有所幫助