尝试使用JavaScript操作DOM css

2ic8powd  于 2023-08-02  发布在  Java
关注(0)|答案(1)|浏览(77)

我试图操纵DOM使用JavaScript和IM试图改变CSS的颜色和背景颜色使用JavaScript

const container=document.body
container.append(`you attaach the append to the body first `)
const div=document.createElement(`div`)
div.style.cssText='color:red; background-color: blue;'
container.append(div)

字符串

pes8fvy9

pes8fvy91#

我不知道你到底不能得到什么,但我认为你没有得到的css风格的工作,所以这是答案,我猜如果你是卡住了

const container = document.body;
const div = document.createElement(`div`);
div.textContent = 'you attach the append to the body first.';
div.style.cssText = 'color: red; background-color: blue;';

container.append(div);

个字符

相关问题