这个问题与我在这个网站上问的最后一个问题有关 -使用 javascript 从 html 背景图像“链接”?.
我收到了一个很好的答案,但是背景图像的链接也适用于容器。我将如何确保仅单击(id 主体的)背景图像而不是容器链接到任何网站?
我希望我已经足够清楚了。提前谢谢了。
的HTML:
<html>
<head>
<link href = "style1.css" rel = "stylesheet" type = "text/css">
</head>
<div id = "header">
Header
</div>
<body>
<div id = "body">
<div class = "container">
</div>
</div>
</body>
</html>
<script>
document.getElementById('body').onclick = function() {
window.location = 'http://www.google.com/';
}
</script>
CSS 代码:
#header{
width:100%;
height:50px;
background-color:black;
}
#body {
width:100%;
height:2000px;
background-image:url('uploads/1.jpg');
cursor:pointer;
}
.container{
width: 1000px;
margin-right: auto;
margin-left: auto;
height: 1000px;
background-color:white;
}