function removeElement(id)
{
document.getElementById(id).style.display="none"
}
</script>上面是js部分,下面这段是html的,我尽量简化一些<div id="bar1"> <img>
<p onclick="removeElement('bar1')">关闭</p></div>
<div id="bar2">
<img>
<p onclick="removeElement('bar2')">关闭</p>
</div>
用jquery,参考代码如下<div id="gb">close</div>
<div id ="xs" style="width:100pxheight:100pxbackground:gray"></div>
<script src="jquery-1.4.2.js"></script>
<script>
$("#gb").click(function(){
$("#xs").hide()
})
</script>