日期:2014-05-16 浏览次数:20325 次
var e_id= opts[i].value+field.substring(field.indexOf('_'),field.length);
var currDiv=document.createElement("div");
currDiv.setAttribute('id',e_id);//动态创建的div根据父级的div来生成id,所以id不会相同
currDiv.setAttribute("ondblclick",function(){window.parent.frames.openLookUpRefWin(this);return false;});
currDiv.setAttribute("onclick",function(){window.parent.frames.changeStatus(this)});
currDiv.setAttribute('url',url);
currDiv.style.cssText="margin-right:5px;height:15px;padding-top:5px;float:left;white-space:nowrap;clear:both;";
currDiv.innerHTML=opts[i].innerHTML+"<img src='_imgs/ico/x1_close.gif' width='10px' style='cursor:hand;' onclick=remove('"+e_id+"'); />";//img的onclick同样失效了
parent_node.insertBefore(currDiv,parent_node.getElementsByTagName('input')[0]);
var e_id= opts[i].value+field.substring(field.indexOf('_'),field.length);
var currDiv=document.createElement("div");
currDiv.setAttribute('id',e_id);//动态创建的div根据父级的div来生成id,所以id不会相同
currDiv.ondblclick=function(){window.parent.frames.openLookUpRefWin(this);return false;}
currDiv.onclick=function(){window.parent.frames.changeStatus(this)}
currDiv.setAttribute('url',url);
currDiv.style.cssText="margin-right:5px;height:15px;padding-top:5px;float:left;white-space:nowrap;clear:both;";
currDiv.innerHTML=opts[i].innerHTML+"<img src='_imgs/ico/x1_close.gif' width='10px' style='cursor:hand;' onclick=remove('"+e_id+"'); />";//img的onclick同样失效了
parent_node.insertBefore(currDiv,parent_node.getElementsByTagName('input')[0]);