我正在尝试使用下面的代码在带有 jquery 的图像下方放置一个 div,但它不起作用。
在<head>
我有这个代码:
<script type="text/javascript">
$( document ).ready(function() {
$(".gdl-blog-full").find("img").prepend("<div id='1' style='width:400px; float: left; margin-top:10px; background-color: #000;'> You are watching 5th object out of 100 </div>");
});
</script>
在里面<body>
我有这个:
<div class="gdl-blog-full">
<img src="logoF.png" width="400" height="93" />
</div>
我只想<div>
在图像下方放置一个..