javascriptで入力ファイルタイプを作成しました。
参照ボタンが表示されないことを除いて、期待どおりに生成された入力タイプのファイル。
入力ファイルタイプのcssスタイルを検索しましたが、表示されるのはカスタマイズ方法だけでした
ブラウザボタン。以下は私の画面がどのように見えるかです。
通常、ファイルタイプは2番目のファイルタイプとして表示されますが、最初のファイルタイプを取得しています
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>
誰かが私が間違っていることを教えてもらえますか?前もって感謝します。