为什么把类型为type的input隐藏后,点击附近的区域也弹出选择文件框
解决方法:
我所遇到这个问题的代码如下:
<label class="labletd" >
<img style="width: 100px;height: 100px;" src="">
<input type="hidden" name="ipaddress" id="ipaddress" value="<?php echo $wangwangcheck->huabei;?>" />
<input type="file" style="display: none; position: absolute;z-index: -3;" id="bt7" accept="image/*" contentEditable="false"
/>
<input type=button value="上传图片" style="line-height: 31px;background:#3498db;padding:0px 5px 0px 5px;color: white"
onclick="bt7.click()">
</label>
原因是我在lable标签内使用了input file标签,解决方法就是在lable标签中加for=""即可解决。