我最近下载了一个模板,用于在我的页面上登录/注册,并试图找出一个类,可以包装一个图像的上传按钮(字体很棒的图标)和选择文件输入控件。 这是我的密码。。。
<html>
<head>
<--//Bootstrap support plugins->
</head>
<body>
<div class="wthree-form bg">
<div class="agileits-2">
<h2>Sign Up Here</h2>
</div>
<form action="signup.php" enctype="multipart/form-data" method="post">
<--These classes make the form look real good by wrapping up the font awesome icon with an input field->
<div class="w3-user">
<span><i class="fa fa-user-o"></i></span>
<input type="text" name="Username" placeholder="Username" required="">
</div>
<--Here is my problem->
<div class="w3-? ">
<span><i class="fa fa-upload"></i></span>
<input type="file" name="fileToUpload">
</div>
<form>
</div>
</body>
</html>
上面的问号是什么需要一个类,使表单包装上传图标与一个经典的选择文件控件一起,使它看起来很好谢谢。。。 其他换行控件工作得非常好
我不确定这会解决您的问题,但看起来您需要将第二个表单标记更改为结束表单标记。
更改
<div class="w3-? ">
<span><i class="fa fa-upload"></i></span>
<input type="file" name="fileToUpload">
</div>
<form>
</div>
</body>
</html>
至
<div class="w3-? ">
<span><i class="fa fa-upload"></i></span>
<input type="file" name="fileToUpload">
</div>
</form>
</div>
</body>
</html>