用js控制div的显示位置

2024-12-31 19:01:54
推荐回答(3个)
回答1:

代码如下:




div隐藏与显示

#menus {
       background-color: #c4cff0;      
      }


function Layer_HideOrShow(cur_div)
{ var current=document.getElementById(cur_div);
   if(current.style.visibility=="hidden")
     {
       current.style.visibility ="visible";
     }
   else
    {
      current.style.visibility ="hidden";
    }
}



 




   
   


   
   
    
     
       
     
    
   





====================



无标题文档












居中的DIV


=======================
3.javascript 控制 html元素 显示/隐藏

1。编写js函数



   function display(id){

       var traget=document.getElementById(id);
        if(traget.style.display=="none"){
                traget.style.display="";
        }else{
                traget.style.display="none";
      }
   }


2. 要显示/隐藏的html元素加上 id 属性



       

       


   

控制这个tr的显示/隐藏


3,添加按钮,链接等触发 js 函数



显示/隐藏

javascript显示隐藏层广告




function 函数{
if(thisdiv.style.display=='none'){ 
thisdiv.style.display=""
}
else
thisdiv.style.display="none"
}


javascript隐藏/显示表单对象
javascript隐藏/显示表单对象 
[SCRIPT language=JavaScript]
function expandIt(el) {
     whichEl =document.getElementById(el)
     if (whichEl.style.display ==   'none') {
      whichEl.style.display   = '';
     }
     else {
      whichEl.style.display   = 'none';
     }
     }
  
[/SCRIPT]

el是对象的id,不管是tr或者table等等先设置一下id,然后进行调用。

例:

[a onclick="expandIt('ttchild'); return false" href="#" ]try it[/a]

[tr id="ttchild"][td width="18"]Example[/td][/tr]

使用时把[]变成<>

javascript控制页面控件隐藏显示的两种方法

javascript控制页面控件隐藏显示的两种方法,方法的不同之处在于控件隐藏后是否还在页面上占位
方法一:
document.all["PanelSMS"].style.visibility="hidden"; 
document.all["PanelSMS"].style.visibility="visible";
方法二:
document.all["PanelSMS"].style.display="none"; 
document.all["PanelSMS"].style.display="inline";

回答2:





无标题文档



//form 用这个div来布局







//下面是要显示的div,怎么把这个div显示在form的前面啊????



..........................................内容.......................




回答3:




..........................................内容.......................







相关问答
最新问答