如何在此代码中打破行:
if (imageTextContainer.length > 0) {
imageTextContainer.text(imageItem.text +imageItem.dec);
}
如何获得此结果:
imageItem.text </br> imageItem.dec
我有这段代码::
{
image : "<?php bloginfo('template_directory'); ?>/pictures/1.jpg",
alt : "Picture 1",
dec : "rockstar games",
text : "Grand Theft Auto San Andres\r\n"
}
\r\n
它不起作用只有回声空间
答案 0 :(得分:1)
试试这个:
if (imageTextContainer.length > 0) {
imageTextContainer.html(imageItem.text + '<br>' + imageItem.dec);
}
答案 1 :(得分:-1)
if (imageTextContainer.length > 0) {
imageTextContainer.html(imageItem.text + "<br />" +imageItem.dec);
}