document.body.style.backgroundImage=""

解决方案 »

  1.   

    onmouseover="this.style.background=''"
    onmouseout="this.style.background='http://www/1.jpg'"
      

  2.   

    document.body.style.backgroundImage="url(a.gif)"
      

  3.   

    js 
    conButton=document.getElementById("Button1")
    显示
    conButton=document.getElementById("Button1")
    conButton.background="图片地址";
    //消失
    conButton=document.getElementById("Button1")
    conButton.background="";
      

  4.   

    写两个css(一个有背景图片,一个没有背景图片),然后在你像让它消失的时候在cs代码里控制css样式。