2025-07-08

代碼如下:

以下為程序代碼:<!DOCTYPE html/>
<head>
<script type="text/javascript" src="http://www.w3school.com.cn/jquery/jquery.js"></script>
<script type="text/javascript">
$(function() {
$(".v").mouseover(function() {
var x = $("<p class='vs'></p>");
x.appendTo($('body'));
x.css({
width : $(this).width() – 6,
height : $(this).height() – 6,
left : $(this).offset().left,
top : $(this).offset().top
});
$($.browser.msie ? this : x).mouseout(function(){
x.remove();
});
});
});
</script>
<style>
.vs {z-index:1000;position:absolute;border:3px solid red;}
</style>
</head>
<body>
<a href="#"><img src=/wp-content/images1/20190422/2018030710241050291.jpg" border="0" class="v" /></a>
<a href="#"><img src=/wp-content/images1/20190422/2018030710241050291.jpg" border="0" /></a>
<a href="#"><img src=/wp-content/images1/20190422/2018030710241050291.jpg" border="0" class="v" /></a>
</body>
</html>

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *