我有 3 个输入框,例如姓名、年龄、地址,然后在底部有一个名为“应用”的按钮 ...现在当我单击“应用”按钮时,会弹出一个花式框,并有另外 3 组输入框,例如公司、部门、主管……然后底部有一个“取消”和“提交”按钮……
我的问题是,当我点击“申请”按钮时,我如何将姓名、年龄、地址连同公司、部门、主管一起包含在花式框中?因为姓名、年龄、地址来自不同的地区,当我点击“提交”按钮时,我想要姓名、年龄、地址、公司、部门、主管数据
这是第一种形式的代码
<input type="text" name="name" value="" id="name/>
<input type="text" name="age value="" id="age"/>
<input type="text" name="address" value="" id="address" />
<a href="#anotherform" id="firstform" class="form-btn">Apply</a>
这是花式盒子的第二种形式的代码
<form action ="#" method="post">
company: <input type="text" name="company" id="company" /><br/>
department: <input type="text" name="department" id="department" /><br/>
supervisor: <input type="text" name="supervisor" id="supervisor" /><br/>
<input type="button" name="cancelapply" id="submitapply" value="cancel" />
<input type="button" name="submitapply" id="submitapply" value="Submit" />
</form>
这是我喜欢的盒子代码
jQuery("a#firstform").fancybox({
'titlePosition' : 'inside',
'transitionIn' : 'none',
'transitionOut' : 'none',
'hideOnOverlayClick' : false,
'hideOnContentClick' : false,
'showCloseButton' : true,
//HOW TO PASS THE name,age,address to the fancybox when i click the
//'apply' button.
//and then when i submit the fancy box, i can get the
// 6 values ?
});