Change text color with Javascript?

后端 未结 5 2097
执念已碎
执念已碎 2020-12-06 11:02

I want to change the color of a title when a button is clicked. This is my code, but it\'s not working and I can\'t figure out why not...

5条回答
  •  失恋的感觉
    2020-12-06 11:51

    Try below code:

    $(document).ready(function(){
    $('#about').css({'background-color':'black'});    
    });
    

    http://jsfiddle.net/jPCFC/

提交回复
热议问题