我将此 HTML 表单保存为file-001.php:
<form action="file-001.php" method="post" id="select-block" class="general-form">
<input class="clearme" name="Title" value="Title" />
<input type="submit" class="submit-btn" value="SAVE" />
</form>
这个表单过程在同一个文件上提交了变量。但这个文件file-001.php实际上由 jQuery 加载调用并位于选项卡框:
$('a.manage-content-link').click(function (e) {
var self = $(this),
file = self.siblings('input[name="block-type"]').val();
file = file.substring(file.length - 3);
self.next(".manage-content-wrap").find(".manage-content").load("file-001.php");
e.preventDefault();
});
但是,当我单击“提交”按钮时,此表单会将我重定向到http://example.com/file-001.php的单个页面
如何使“动作”结果仍然在同一个选项卡框内。没有从盒子里重定向出来?