有没有办法将元素的属性值(尤其是 id)作为字符串获取?例如以下行导致“()”:
field <- UI.new
# set (attr "id") "some text"
on UI.drop field $ \_ -> do
-- Some label to print the attribute value to
label <- getElementById window "labelID"
id <- get (attr "id") field
(element (fromJust label)) # set text (show id)
由于attr
返回 a WriteAttr
,get
可能无法正常工作。有解决方法吗?
提前致谢!
问候