如何在 XIST python 模块中设置元素 class 属性
How to set element class attribute in the XIST python module
我刚刚掌握了这个 xist html 生成代码的句柄,并且我的整体结构适合文档,但我准备开始用它们的 [=20= 标记所有不同的元素]es 稍后将由 CSS 设置样式。我正在努力弄清楚如何使用 class 属性标记元素。如果我做类似...
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>
真的很微妙,你必须使用class_
才能完成。
with xsc.addattr("class_" ) :
或更紧凑
with html.td( class_="ColumnHeader" ) :
我刚刚掌握了这个 xist html 生成代码的句柄,并且我的整体结构适合文档,但我准备开始用它们的 [=20= 标记所有不同的元素]es 稍后将由 CSS 设置样式。我正在努力弄清楚如何使用 class 属性标记元素。如果我做类似...
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>
真的很微妙,你必须使用class_
才能完成。
with xsc.addattr("class_" ) :
或更紧凑
with html.td( class_="ColumnHeader" ) :