输入值[type =" button"]通过css更改为可复制文本?

时间:2017-11-24 06:00:36

标签: html html5 css3

我想将输入[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我想从其他文件申请。

2 个答案:

答案 0 :(得分:0)

你只需要添加这个css

&#13;
&#13;
input[type="button"]{
user-select:text;}
&#13;
<input type="button" value="Tell us more">
&#13;
&#13;
&#13;

答案 1 :(得分:0)

使用css类,这样您就可以控制要选择的按钮。

&#13;
&#13;
/*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;
&#13;
&#13;