我需要将广告作为我网页的背景图片。什么是使身体背景图像成为可点击链接的最佳方法?
答案 0 :(得分:1)
您无法使背景图像可点击。你的形象是否占据了整个身体空间?
答案 1 :(得分:1)
或者你可以使用javascript:
$("body").click(function(event){
event.stopPropagation();
alert('oh hai');
});
答案 2 :(得分:0)
这就是我如何使身体背景图像可点击:
$('body').css({'background': 'url(yourimage.jpg) top center no-repeat'})
$('body').click(function(e){
if (e.target === this) {
window.open('http://link.html', '_blank');
}
});
您也可以使用window.location而不是window.open()。希望这会有所帮助。