我想上傳我的文件,當用戶點擊查看按鈕,如下面的代碼所示。我已經嘗試了下面的代碼。任何形式的幫助表示讚賞。 謝謝。如何上傳文件按鈕點擊
#myInput {
width: 50%;
padding: 12px 20px 12px 40px;
border: 1px solid #000;
display: inline-block;
}
input[type=file]::-webkit-file-upload-button {
width: 0;
padding: 0;
margin: 0;
-webkit-appearance: none;
-moz-appearance: none;
border: none;
border: 0px;
}
x::-webkit-file-upload-button,
input[type=file]:after {
-webkit-appearance: button;
-moz-appearance: button;
border-collapse: separate;
border-radius: 7px;
-webkit-border-radius: 7px;
--moz-outline-radius: 7px;
content: 'View';
color: #080708;
background: #e3e3e3;
text-decoration: none;
display: inline-block;
left: 100%;
margin-left: 50px;
position: relative;
padding: 10px 46px 10px 40px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="file" name="myInput" id="myInput">
有效的表單標籤? – rtfm
您的HTML有效,而您的CSS無關緊要。另外,我沒有看到JavaScript和PHP。您需要將上傳包裝在'
良好的起點http://php.net/manual/en/features.file-upload.post-method.php – rtfm