1

我刚刚处理了这个 xist html 生成代码,我的整体结构对文档来说工作得很好,但我准备开始用它们的类标记所有各种元素,以便稍后由 CSS 设置样式。我正在努力弄清楚如何使用类属性标记元素。如果我做类似...

with html.td() :
    with xsc.addattr("class" ) :
        +xsc.Text("ColumnHeader")
    +xsc.Text( "Image Name" )

我会收到以下错误

Traceback ...
ll.xist.xsc.IllegalAttrError: no local attribute with Python name 'class' in <attrs class ll.xist.ns.html:td.Attrs with 32 attrs at 0x2a0bed8>
4

1 回答 1

1

真的很微妙,你必须用class_它来完成它。

with xsc.addattr("class_" ) :

或更紧凑

with html.td( class_="ColumnHeader" ) :
于 2015-03-07T02:22:28.350 回答