发布于 2016-11-01 01:36:44 | 265 次阅读 | 评论: 0 | 来源: PHPERZ
你同时也可以对css进行操作:
>>> p.addClass("toto") [<p#hello.toto.hello>] >>> p.toggleClass("titi toto") [<p#hello.titi.hello>] >>> p.removeClass("titi") [<p#hello.hello>]
或者是css模式:
>>> p.css("font-size", "15px") [<p#hello.hello>] >>> p.attr("style") 'font-size: 15px' >>> p.css({"font-size": "17px"}) [<p#hello.hello>] >>> p.attr("style") 'font-size: 17px'
或者类似python模式 (‘_’ 符号用 ‘-‘ 代替):
>>> p.css.font_size = "16px" >>> p.attr.style 'font-size: 16px' >>> p.css['font-size'] = "15px" >>> p.attr.style 'font-size: 15px' >>> p.css(font_size="16px") [<p#hello.hello>] >>> p.attr.style 'font-size: 16px' >>> p.css = {"font-size": "17px"} >>> p.attr.style 'font-size: 17px'