将背景图像设置为链接?

时间:2011-12-27 12:54:22

标签: hyperlink background

我有一个.big-container(width: 100%; height: 100%; overflow: hidden;),在这个.container(width: 982px; height: 100%; overflow: hidden;)。

我想设置它,以便当有人点击没有内容(.content)的.big-container(背景)时,删除fx。 www.google.hu

以下是图片:(点击灰色部分)

enter image description here

怎么做? (也许用jQuery)。

1 个答案:

答案 0 :(得分:2)

使用jQuery ..

$(".big-contaner").click(function(event){
  event.stopPropagation();
  // do something
}); 

你需要event.stopPropagation()用于自定义(不同于.big-container)单击子元素内部的事件管理,例如.content等