不,这是无效的,但是您可以HTML
借助CSS
和jQuery
用法来欺骗自己的内部表格位置。首先在您的父表单内创建一个容器div,然后在页面上的其他任何地方创建带有您的孩子(内部)表单的div:
<form action="a">
<input.../>
<div class="row" id="other_form_container"></div>
<input.../>
</form>
....
<div class="row" id="other_form">
<form action="b">
<input.../>
<input.../>
<input.../>
</form>
</div>
给您的容器div稳定的空间
<style>
#other_form_container {
height:90px;
position:relative;
}
</style>
感谢技巧相对于容器div的“ other_form”位置。
<script>
$(document).ready(function() {
var pos = $("#other_form_container").position();
$("#other_form").css({
position: "absolute",
top: pos.top - 40,
left: pos.left + 7,
width: 500,
}).show();
});
</script>
PS:您必须玩数字才能使其看起来不错。