2

我想使用“data-”表示法定义具有扩展属性的输入。因此,例如定义:

<input type="radio" id="3" data-extra="three"/>

有没有办法在 Scalatags 中做到这一点?

4

3 回答 3

4

最方便的方法是使用data(...)

input(tpe := "radio", id := 3, data("extra") := "three")
于 2015-11-27T07:38:52.500 回答
2

您可以使用它"data-extra".attr来创建自定义属性。例如

input(tpe := "radio", id := "3", "data-extra".attr := "three")
于 2015-06-11T14:18:05.197 回答
0

现在甚至

input(tpe := "radio", id := 3, data.extra := "three")

于 2017-10-01T18:32:20.060 回答