当前位置: 代码迷 >> 综合 >> 类似于多开助手能虚拟定位的软件
  详细解决方案

类似于多开助手能虚拟定位的软件

热度:49   发布时间:2023-09-10 11:09:58.0
类似于多开助手能虚拟定位的软件
firefox等可以使用
var dom=document.getElementById("name");
dom.setAttribute("style","width:10px;height:10px;border:solid 1px red;") ;

IE中则必须使用style.cssText

var dom=document.getElementById("name");
dom1.style.cssText = "width:10px;height:10px;border:solid 1px red;";

补充一下,目前style.cssText类似innerHTML了,已经成为一个web开发的事实标准。因此测试显示firefox浏览器也支持这种方式。 类似于多开助手能虚拟定位的软件
  相关解决方案