0
我想合併if else語句在我的字符串下面。當我嘗試它時,我在我的瀏覽器控制檯中獲得Uncaught SyntaxError: Unexpected token if
。我該怎麼辦呢?如果...其他語句在引號內
for(var i=0; i<articles.length; i++) {
var $article = "<div class='col-xs-12 col-sm-6 col-md-3 col-lg-3 fix-box-height'>" +
"<a class='shadow-hovering' href="+"'"+articles[i].full_url+"'"+">" +
"<div class='thumbnail color-after-hover'> " +
"<img class='thumbnail-img' src="+"'"+ articles[i].thumbnail_url +"'"+" data-src='3' alt=''>" +
"<div class='caption box-read-more'>"+
if(articles[i].title.length > 28){
"<h4>"+"'"+ articles[i].title.substr(0, 28) +"'..."+"</h4>"
} else if (articles[i].title.length > 16) {
"<h4>"+"'"+ articles[i].title +"'"+"</h4>"
} else {
"<h4>"+"'"+ articles[i].title +"'"+"</h4> <br>"
}
if(articles[i].subtitle.length > 37){
"<h4>"+"'"+ articles[i].subtitle.substr(0, 37) +"'..."+"</h4>"
} else if (articles[i].subtitle.length > 15) {
"<h4>"+"'"+ articles[i].subtitle +"'"+"</h4>"
} else {
"<h4>"+"'"+ articles[i].subtitle +"'"+"</h4> <br><br>"
}
+"<p> <span class='btn btn-primary more-box-button'>More</span> </p> " +
"</div>" +
"</div>" +
"</a>" +
"</div>";
}