通过JS动态创建一个html DOM元素并显示(2)

var htmlAttributes= [ {attrName:'class',attrValue:'样式名称'} //for IEs , {attrName:'className',attrValue: '样式名称'} //for ff ] var domParams={domTag:'div', content:'动态div的innerHTML', otherAttributes:htmlAttributes}; var newHtmlDom=dynCreateDomObject(domParams); //通过setAttribute('style','position:absolute.....................') //的形式来指定style没有效果,只能通过如下形式,jiong newHtmlDom.style.zIndex='8888'; newHtmlDom.style.position='absolute'; newHtmlDom.style.left='100px'; newHtmlDom.style.top='200px';

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgsdjw.html