欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

html 浮动窗口_html/css_WEB-ITnose

程序员文章站 2022-05-09 23:34:09
...
		


function createInputDialog(obj,id,value){      var div=document.getElementById("editBehaviorDiv");      if(div!=null)          document.body.removeChild(div);      div = document.createElement("div");       div.id="editBehaviorDiv";      div.style.position='absolute';      var op=getoffset(obj);     div.style.top= "100px";      div.style.left= (document.body.clientWidth - 374)/2.0 + "px";      div.style.zIndex =100;      div.style.backgroundColor='#ecf1f6';      div.style.border="1px solid #666";      //div.className="td1";      div.innerHTML="
"+ ""; document.body.appendChild(div); document.all.behaviorValue.focus(); } function saveBehaviorname(obj,id){ var behaviorValue = document.all.behaviorValue.value; var idsArray = new Array(); //定义一数组 idsArray = behaviorValue.split("\n"); //字符分割 var idsString = ""; for (i = 0; i
效果如图:
相关标签: html 浮动窗口