为榆树

时间:2018-04-20 15:36:35

标签: html elm

有没有办法为元素分配ID?我想在elm-lang / dom库中使用toBottom函数来自动滚动聊天窗口,但我需要一个id。

1 个答案:

答案 0 :(得分:3)

尝试

import Html.Attributes as Attr exposing (id)

并在元素属性中包含htmlAttribute

el [htmlAttribute (Attr.id "your id")] (text "Sample Text")

htmlAttribute也可用于其他HTML属性,例如`property'