js改变HTML元素样式

html

<p id="demo">js改变HTML元素样式</p>
<button type="button" onclick="MyTest(this)">测试</button>

js

function MyTest() {
    // 改变 <p> 元素的样式,将字号改为40,颜色改为红色
    var test = document.getElementById('demo');
    test.style.fontSize='40px';
    test.style.color='red';
}

 原始样式

js改变HTML元素样式

点击按钮后

js改变HTML元素样式

 

上一篇:Day186.Hystrix断路器 -SpringCloud


下一篇:Spring Cloud中Hystrix、Ribbon及Feign的熔断关系是什么?