css或其他方法怎么插入一个图片覆盖表格中的文字?
发布网友
发布时间:2022-04-21 07:56
我来回答
共2个回答
热心网友
时间:2022-04-21 09:26
<html>
<head>
<meta charset="utf-8">
<title>the test page</title>
<script src="./jquery.min.js"></script>
<script>
$(document).ready(function(){
var test_image=$("#test_image").attr("src");
if(test_image==""){
$("#test_image").hide();
}else{
$("#test_p").hide();
}
});
</script>
</head>
<body>
<div style="width:670px;height:237px;position:relative;">
<img id="test_image" src="" style="width:335px;height:237px;position:absolute;top:0;left:0;">
<p id="test_p" sytle="position:absolute;top:0;left:0;">the test article</p>
</div>
</body>
</html>
热心网友
时间:2022-04-21 10:44
jk就艰苦有hi会员