JQuery_图片未加载!
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("img").error(function(){
$("img").replaceWith("<p><b>Error Picture!</b></p>")
});
});
</script>
</head>
<body><img src="..."/>
<p>如果在路径下没有找到相关的图片,那么网页中图片的位置会被替换成文字:Error Picture!</p>
</body>
</html>