我在输入文件类型中看不到浏览按钮

时间:2012-04-19 06:37:04

标签: javascript html css

我通过javascript创建了一个输入文件类型。

按照我的预期生成输入类型文件,但我看不到浏览按钮。

我搜索了输入文件类型的css样式,但我看到的是如何自定义

浏览器按钮。以下是我的屏幕的样子。

enter image description here

通常情况下,文件类型应该作为第二个出现,但是当我

时,我会得到第一个

在javascript中生成文件类型。下面是我的代码。

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<style>
.uploadForm{
type:file; position:relative;
}

#addBtn{
width:100px; height:20px;
}
</style>
<script>
function addMoreFiles(){
var fileForm = document.createElement('input');
var addButton = document.createElement('button');   
addButton.setAttribute('onclick', "addMoreFiles()");
addButton.setAttribute('id', "addBtn");
fileForm.className = 'uploadForm';
document.getElementById('uploadDiv').appendChild(fileForm);
document.getElementById('uploadDiv').appendChild(addButton);
}
</script>
</head>
<body onload="addMoreFiles()">
<form name="frmname" method="post" enctype="multipart/form-data" action="./ViewPage.jsp">
file<br>
<div id="uploadDiv"></div>
<br>
<input type="file" name="uploadFile"><br>
<input type="submit" value="upload"><br>
</form>
</body>
</html>

有谁能告诉我我做错了什么?提前谢谢。

3 个答案:

答案 0 :(得分:1)

var fileForm = document.createElement('input');
fileForm.type = 'file'; // only <input type="file"> has browse button

答案 1 :(得分:0)

我可以在Safari,Firefox和Chrome上正确查看。 http://jsfiddle.net/MWtzh/

您是否有任何特定的浏览器试图使用它? 一些较旧的IE版本,包括IE8旧版本,不支持HTML5。 看看这里:Does Internet Explorer 8 support HTML 5?

答案 2 :(得分:0)

看看Seho Lee先生

我在名为addmorefiles()的函数中更改的内容如下:

function addMoreFiles(){
var fileForm = document.createElement('input');
var addButton = document.createElement('button');   
fileForm.setAttribute('type', "file"); //by this we are setting type of button...which u missed to put
addButton.setAttribute('onclick', "addMoreFiles()");
addButton.setAttribute('id', "addBtn");
fileForm.className = 'uploadForm';
document.getElementById('uploadDiv').appendChild(fileForm);
document.getElementById('uploadDiv').appendChild(addButton);

我想你忘了为给定的浏览按钮“fileform”设置属性“type”

我已经实现了它并且有效...

你也可以尝试用你的答案替换你的功能....你会得到你想要的

试试吧......