此代码在 img src 已设置时有效,例如:
<div id="images">
<img src="something.jpg" />
</div>
<script type="text/javascript">
$(document).ready(function(){
$("div#images").hide();
$("div#images").find("img").load(function(){
$(this).closest("div#images").show();
});
});
</script>
但如果 images src 正在调用脚本,则它不起作用:
<img src="getimage.php?img=something.jpg" />
在 getimage.php 我做 echo readfile($_GET["img"]);
我怎样才能使这项工作?
帕特里克