我只是想做一个上传或类似于浏览的div本身,像作为一个文件输入和触发其功能,但我的问题是,我是新的java脚本和相当尴尬自己的头脑 Storm 近一个小时,并寻找同样的问题在互联网上。
所以我别无选择只能在这里问问题
我的代码
<script type="">
$('#pic1').click(function (Upload) {
$('#fileToUpload').click();
});
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<div id="pic1" style="border:1px solid white;width:200px;height:150px;float:left;margin:10px;" onclick="Upload">
<input type="file" name="fileToUpload" id="fileToUpload" size="1" style="display:none;">
</div>
<br> while my file input is hidden inside the div<br>
3条答案
按热度按时间8gsdolmq1#
此代码段专用于像
accept="image/*"/
这样指定的图像jslywgbw2#
您只需将输入放入
label
中。尝试以下代码段。
blmhpbnm3#