我怎么能在文本容器中打破行

时间:2013-08-01 12:33:09

标签: jquery

如何在此代码中打破行:

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它不起作用只有回声空间

2 个答案:

答案 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);
  }