如果我在Textarea中输入没有空格的冗长文本并附加它,它会扰乱DIV的对齐并且文本显示在Single Line中。如何在固定宽度的 DIV 中控制这种类型的文本?
这是我的演示:
也看看这张图片,只是想以更好的方式解释我的问题。
我也在这里提供代码或访问我的 JsFiddle DEMO
这是我的 HTML:
<table border="0" width="500" cellspacing="0">
<tbody class="append_data"></tbody>
<tr>
<td>
<textarea name="description" id="description"></textarea>
<p>
<a href="javascript:void(0);" class="add_more">Add More</a>
</p>
</td>
</tr>
</table>
这是CSS:
#description{
width:400px;
}
.description_text{
border:#333333 solid 1px;
width:400px !important;
}
这是我的 JS 代码:
$('.add_more').click(function()
{
var description = $('#description').val();
$(".append_data").append('<div class="description_text">'+description+'</div><br><br>');
});