- 注册时间
- 2014-1-14
- 最后登录
- 2014-3-20
- 阅读权限
- 10
- 积分
- 212
- 精华
- 0
- 帖子
- 65
 
|
function openWindow() {
var win = mini.open({
title: '添加信息',
url: bootPATH + '../../showhtml/EmployeeWindow.html',
showModal: false,
width: 400,
height: 250
});
var x = 200;
var y = 300;
win.showAtPos(x, y);
}
html页面
<form id="form1" method="post" action="">
<input name="id" class="mini-hidden" />
<div style="padding-left:11px;padding-bottom:5px;">
<fieldset style="border:solid 1px #aaa;padding:3px;">
<legend style="font-size:x-large;" >添加面料</legend>
<table>
<tr>
<td class="tdd1">面料大料</td><td style="width:130px">
<select style="width:155px"></select></td><td></td>
</tr>
<tr>
<td class="tdd1">织 法</td> <td style="width:130px"><input type="text" /></td>
<td><input type="button" vlaue="确定"/></td>
</tr>
<tr>
<td class="tdd1">品 名</td> <td style="width:130px"><input type="text" /></td>
<td><input type="button" value="取消" /></td>
</tr>
</table>
</fieldset>
</div>
</form>
|
|