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 の先頭にテキストを配置し、その後に画像を配置するのが好きです。