我喜欢使用 jquery 向 div 添加文本和一些图像。
我可以这样做来添加文本:
<script type="text/javascript">
$(document).ready(function () {
$("#help").text('This is the description').css({"border": "1px solid", "color": "Black", "font-size": "14px", "font-weight": "bold", "padding": "30px 0 30px 0", "width": "auto", "height": "auto", "text-align": "left", "background": "lightyellow"});
我试过这个:
$("#help").append('<img src="description.png" alt="box_plot_description" />');
});
如何使用 jquery 将图像附加到此文本?
我在文本之后添加了追加,但是追加覆盖了 div。我喜欢在 div 的开头有文本,然后是图像。