<input type='file'>左边用来显示路径的部分怎么可以去掉?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了<input type='file'>左边用来显示路径的部分怎么可以去掉?相关的知识,希望对你有一定的参考价值。
让其左边用来显示路径的部分去掉
或者隐藏也可以
这个是方法,贴出来大家看
<html>
<head>
<title>添加附件</title>
</head>
<body class="body">
<script type="text/javascript">
$("#choosefile").click(function ()
document.getElementById("f").click();
var path = document.getElementById("f").value;
alert(path);
)
</script>
<form> <input type="file" id="choosefile" />
<input type="file" id="f" style="display:none;" /> </form>
</body>
</html>
去不掉吧,只能设置下宽度隐藏追问
不行,Width是整体的宽度,隐藏可以吗?
追答我这可以隐藏。。。怪了
或者你把整个input隐藏,重新添加一个按钮,点击这个按钮的时候再去触发“浏览”按钮的点击
相关的你可以看一下bbs csdn net/topics/190055766
你说得对,将整个input隐藏,重新添加一个按钮,点击这个按钮的时候再去触发“浏览”按钮 这样的方式是可行的
本回答被提问者采纳 参考技术B <div style="position:absolute;clip:rect(0,250,100,150)"><input type=file></div>可以用 clip 剪切左边的文本框部分追问
这个我的就没有显示,你那边呢?
追答这是我这边的效果
h5 input type=file 图片预览
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>html5 图片上传预览</title>
<style>
#preview { width: 300px; height: 300px; overflow: hidden; } #preview img { width: 100%; height: 100%; }
</style>
<script src="jquery.min.js"></script>
<script type="text/javascript">
function preview1(file) {
var img = new Image(),
url = img.src = URL.createObjectURL(file)
var $img = $(img)
img.onload = function() {
URL.revokeObjectURL(url)
$(‘#preview‘).empty().append($img)
} }
// function preview2(file) {
// var reader = new FileReader()
// reader.onload = function(e) {
// var $img = $(‘<img>‘).attr("src", e.target.result)
// $(‘#preview‘).empty().append($img)
// }
// reader.readAsDataURL(file)
}
$(function() {
$(‘[type=file]‘).change(function(e) {
var file = e.target.files[0]
preview1(file)
})
})
</script>
</head>
<body>
<form enctype="multipart/form-data" action="" method="post">
<input type="file" name="imageUpload"/>
<div id="preview" style="width: 300px;height:300px;border:1px solid gray;"></div>
</form>
</body>
</html>
以上是关于<input type='file'>左边用来显示路径的部分怎么可以去掉?的主要内容,如果未能解决你的问题,请参考以下文章
<input type='file'>左边用来显示路径的部分怎么可以去掉?
关于去除input type='file'改变组件的默认样式换成自己需要的样式的解决方案
把HTML5的手机网站嵌入安卓APP中,发现<input type='file' />的上传按钮功能失效,点击没有任何反应?