以下のコードに示すように、ユーザーがビューボタンをクリックしたときにファイルをアップロードしようとしています。私は次のコードを試しました。どんな種類の助けにも感謝します。 ありがとうございます。ボタンをクリックしてファイルをアップロードする方法
#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