Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个网络应用程序,我想在其中上传图像。它在 Windows 上工作正常,但在 iPad 上无法访问文件上传控制。
你能告诉我什么是问题以及我如何解决这个问题..
<input id="file3" type="file" runat="server" name="file3" class="textfield" style="WIDTH: 221px; HEIGHT: 20px;" size="17"/>
IOS 不支持访问文件系统。因此,<input type="file" />Mobile Safari 将忽略您页面上的任何元素。
<input type="file" />
要访问 IOS 文件系统,请按照下列步骤操作:
1.)首先创建一个IOS应用程序。
2.)然后访问该特定应用程序并上传文件。
要遵循此程序,请参阅此链接
希望对您有所帮助。