我想将输入[type ="按钮"]更改为文本,因为我要复制输入按钮的值内的文本意味着如果我拖动按钮的文本我可以轻松复制该文本。
这是我的代码:
Match<-list()
for(i in 1:1000){Match[[i]]<-match(as.data.frame(t(A)),as.data.frame(t(B[[i]])), nomatch=0)}
是否可以轻松复制按钮的值?
我不想要内联css我想从其他文件申请。
答案 0 :(得分:0)
你只需要添加这个css
input[type="button"]{
user-select:text;}
&#13;
<input type="button" value="Tell us more">
&#13;
答案 1 :(得分:0)
使用css类,这样您就可以控制要选择的按钮。
/*use this to element where selection is allowed*/
.selectable{
user-select:text;}
/*use this to element where selection is not allowed*/
.notselectable{
user-select:none;}
&#13;
<html><body>
<input class = 'selectable' type="button" value='Select Me'>
<div class = 'notselectable'> Unselectable text</div>
<input class = 'notselectable' type="text" value='Css will have no effect on me I am selectable by default'>
<input class = 'notselectable' type="text" disabled = 'true' value='Even if you disable me, text can be selected '>
</body></html>
&#13;