我正在尝试将包含图像的 jQuery 代码插入到<td>
表格中,但图像超出了表格范围。我尝试了很多方法,但没有奏效。
Javascript
<script type="text/javascript">
$(document).ready(function() {
var $elements = $('#picOne, #picTwo, #picTree, #picFour');
function anim_loop(index) {
$elements.eq(index).fadeIn(4000, function() {
var $self = $(this);
setTimeout(function() {
$self.fadeOut(4000);
anim_loop((index + 1) % $elements.length);
}, 6000);
});
}
anim_loop(0); // start with the first element
});
</script>
HTML
<table align="center" width="975" border="1">
<tr>
<td>
<div id="picOne"><img src="pic1.jpg" /></div>
<div id="picTwo"><img src="pic1b.jpg" /></div>
<div id="picTree"><img src="2b.jpg" /></div>
<div id="picFour"><img src="2.jpg" /></div>
</td>
</tr>
</table>
</body>
</html>
我该如何解决?