87,990
社区成员
发帖
与我相关
我的任务
分享
with(Div.style)
{
width='200px';
height='200px';
background='green';
anotherAttribute = 'sth';
}
with(Div.style)
{
width='200px';
height='200px';
background='green';
}
相当于
Div.style.width='200px';
Div.style.height='200px';
Div.style.background='green';
Div.style.width='200px';
Div.style.height='200px';
Div.style.background='green';