有没有办法为元素分配ID?我想在elm-lang / dom库中使用toBottom函数来自动滚动聊天窗口,但我需要一个id。
答案 0 :(得分:3)
尝试
import Html.Attributes as Attr exposing (id)
并在元素属性中包含htmlAttribute
el [htmlAttribute (Attr.id "your id")] (text "Sample Text")
htmlAttribute
也可用于其他HTML属性,例如`property'