首页 > 其他分享 >【TypeScript】document.body.style TS 报错 Cannot assign to 'style' because it is a read-only p

【TypeScript】document.body.style TS 报错 Cannot assign to 'style' because it is a read-only p

时间:2023-04-28 14:22:05浏览次数:51  
标签:body style TypeScript ts 报错 document

报错信息

image

解决方法

image

style对象提供了一个cssText属性,支持设置多种CSS样式:

document.body.style.cssText = `width:${targetX}px; height:${targetY}px; transform: scale(${scaleRatio}) translateX(-50%); left: 50%`;

还有其他方法也可以,参考下面的文章

参考文章

七爪源码:使用 JavaScript 设置 CSS 样式

标签:body,style,TypeScript,ts,报错,document
From: https://www.cnblogs.com/wx980416/p/17362015.html

相关文章