我想使用jQuery append函数动态地将div添加到另一个div,但是我得到了一些错误。这是我的代码:
prepend_data ='<div class="media">
<a class="pull-left" href="#">
<img class="media-object img-circle" src="<?=base_url()? >folder/holderjs/holder.js/64x64">
<div class="media-body">
<h4 class="media-heading">
<strong>'+item.name+'</strong><span class="text-green">good</span> mode
</h4>
<abbr title="title">Location:</abbr>some text<br>
<abbr title="Phone">Ph:</abbr>'+' '+item.phone+'</div>
</div>';
$('.container').prepend(prepend_data);
收到此错误“Uncaught SyntaxError:Unexpected identifier”
请帮忙。 感谢
答案 0 :(得分:0)
删除所有换行符,以便所有'div''内容都在同一行