我正在处理PHP文件上传,但我想要打开上传页面的按钮在弹出窗口中打开它。所以就好像很多网站都这样做,按一个按钮,然后打开一个弹出窗口,你可以上传文件。
这是我尝试过的代码,但它没有工作:
<a href="upload.html" target="_blank">
<input type="button" class="button" value="Upload" />
&#13;
答案 0 :(得分:1)
您必须使用type = file
<a href="upload.html" target="_blank">
<input type="file" class="button" value="Upload" />
答案 1 :(得分:0)
请参阅link-- Image highlighting the exact area I'm talking about
<input type="button" value="Open a Popup Window" onclick="window.open('https://www.google.com/javascript/examples/sample_popup.cfm','popUpWindow','height=500,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no, status=yes');">
<p> ----------------------according to your code----------------- </p>
<a href="upload.html" target="_blank">
<input type="file" class="button" value="Upload" />
&#13;
答案 2 :(得分:0)
尝试输入type =“file”。 示例:input type =“file”name =“myFile”
如果您想要设置/更改默认按钮,可以这样做...
阅读本文&gt; custom file upload button
如果仍然按照这种方式进行,也请关闭你的标签。