我一直在网站上做作业,我试着制作一些按钮,其中一些是用于提交其他类似的附加文件,我正在谈论输入类型"文件&#34 ;问题是,当我按下它时,它不会发生任何颜色变化,因为它具有悬停功能。我怎么解决它? HTML
<div class=radioB>
<input class=inputfile type="file" name=file>
<label for="file" id=inputlabel><img src="style/iconos/attachment.png" width="30px"></label>
</div>
CSS
.inputfile{
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
}
.inputfile + #inputlabel {
font-size: 1.25em;
font-weight: 700;
color: white;
height: 40px;
width: 45px;
background-color: white;
display: inline-block;
float: left;
margin-left: 0px;
}
.inputfile:focus + #inputlabel,
.inputfile + #inputlabel:hover {
background-color: antiquewhite;
border-radius: 510px;
}
.inputfile + #inputlabel {
cursor: pointer; /* "hand" cursor */
}
#inputlabel img{
position: absolute;
margin-left: 5px;
padding-top: 3px;
}
.radioB #inputlabel{
padding-top: 9px;
padding-bottom: 2px;
position: relative;
padding-left: 6px;
border: 1px solid white;
color: darkslategray;
border-radius: 510px;
border:1px solid black;
}
答案 0 :(得分:0)
为img和输入标签添加id属性,然后使用此脚本
<div class=radioB>
<input class=inputfile type="file" name=file id=b>
<label for="file" id=inputlabel><img src="style/iconos/attachment.png" width="30px" id=a></label>
</div>
<script src="https://code.jquery.com/jquery-2.2.4.js"></script>
<script>
$("#a").on("click", function() {
$("#b").trigger("click");
});
</script>