Changing CSS Values with Javascript

后端 未结 9 1518
借酒劲吻你
借酒劲吻你 2020-11-22 17:16

It\'s easy to set inline CSS values with javascript. If I want to change the width and I have html like this:

<
9条回答
  •  不要未来只要你来
    2020-11-22 18:00

    This simple 32 lines gist lets you identify a given stylesheet and change its styles very easily:

    var styleSheet = StyleChanger("my_custom_identifier");
    styleSheet.change("darkolivegreen", "blue");
    

提交回复
热议问题