Set element width or height in Standards Mode

后端 未结 2 1565
太阳男子
太阳男子 2020-12-13 03:05

Is it possible to set width or height of HTML element (ex.

) in JavaScript in Standards Mode?

Note the following code:



        
2条回答
  •  南笙
    南笙 (楼主)
    2020-12-13 03:32

    Try declaring the unit of width:

    e1.style.width = "400px"; // width in PIXELS
    

提交回复
热议问题