|
|
@@ -152,18 +152,18 @@ function initDetail() {
|
|
|
$("#issuer").text(data.issuer);
|
|
|
|
|
|
if (data.genres == undefined || data.genres === '') {
|
|
|
- $("#genres").text('--');
|
|
|
+ $("#genres").html('--');
|
|
|
} else {
|
|
|
- $("#genres").text(data.genres.replaceAll(",", " | "));
|
|
|
+ $("#genres").html(data.genres.replaceAll(",", " | "));
|
|
|
}
|
|
|
if (data.cast == undefined || data.cast === '') {
|
|
|
- $("#cast").text('--');
|
|
|
+ $("#cast").html('--');
|
|
|
} else {
|
|
|
- $("#cast").text(data.cast.replaceAll(",", " | "));
|
|
|
+ $("#cast").html(data.cast.replaceAll(",", " | "));
|
|
|
}
|
|
|
|
|
|
- $("#commentfirstspan").text(data.commentFirst);
|
|
|
- $("#commentspan").text(data.comment);
|
|
|
+ $("#commentfirstspan").html(data.commentFirst);
|
|
|
+ $("#commentspan").html(data.comment);
|
|
|
|
|
|
var imgTitle = data.identificationCode + " " + data.name;
|
|
|
if (data.imgGFList.length > 0) {
|