Hidden element won't copy to clipboard

后端 未结 4 1927
闹比i
闹比i 2021-01-13 19:20

I am trying to add button to copy simple text string but without success.

4条回答
  •  北荒
    北荒 (楼主)
    2021-01-13 19:55

    Instead of the hidden attribute, use an offscreen class and the aria-hidden attribute (the latter for accessibility):

    .offscreen {
        position: absolute;
        left: -999em;
    }
    
    
    

提交回复
热议问题