我最近在我的网站上从 simplemodal 切换到了 fancybox。一切都很好,除了表格。花式盒子里的所有表格都不起作用。似乎甚至表单上的提交按钮都没有做任何事情。此外,当我单击文件输入时,弹出窗口询问我没有出现哪个文件。
这是表单的代码:
<div id="basic-modal-content">
<h1>Upload CSV's</h1>
<form method="post" enctype="multipart/form-data" action="csvs.php">
<p>
<label style="font-size: 8pt;">can:</label>
<input type="file" name="csv[3]" />
</p>
<hr />
<p>
<label style="font-size: 8pt;">car:</label>
<input type="file" name="csv[2]" />
</p>
<hr />
<p>
<label style="font-size: 8pt;">lis:</label>
<input type="file" name="csv[5]" />
</p>
<hr />
<p>
<label style="font-size: 8pt;">veh:</label>
<input type="file" name="csv[4]" />
</p>
<hr />
<p>
<label style="font-size: 8pt;">wil:</label>
<input type="file" name="csv[1]" />
</p>
<p style="text-align: center; margin-top: 20px;">
<input type="submit" value="Upload CSV's" />
</p>
</form>
</div>
我通过$("#basic-modal-content").fancybox().click();
在页面上单击按钮时使用来显示幻想框。