-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathform.param.js
81 lines (80 loc) · 2.87 KB
/
form.param.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/**
* 规格参数涉及到的JS操作
* @作者 qinggan <[email protected]>
* @版权 深圳市锟铻科技有限公司
* @网站 http://www.phpok.com
* @版本 4.x
* @授权 http://www.phpok.com/lgpl.html PHPOK开源授权协议:GNU Lesser General Public License
* @日期 2017年07月19日
**/
;(function($){
$.phpok_form_param = {
/**
* 增加一行
* @参数 identifier 表单字段标识
* @参数 width 文本框宽度
**/
add_line:function(identifier,width)
{
var td_count = ($("#"+identifier+"_tbl tr:eq(0) th")).length - 1;
var html = '<tr>';
html += '<td><input type="button" value="'+p_lang('删除')+'" onclick="$.phpok_form_param.delete_line(this)" class="layui-btn layui-btn-sm layui-btn-danger" /></td>';
for(var i=0;i<td_count;i++){
html += '<td><input type="text" name="'+identifier+'_body[]"';
html += ' class="layui-input"';
html += ' style="width:99%" /></td>';
}
html += '</tr>';
$("#"+identifier+"_tbl").append(html);
},
delete_line:function(obj)
{
$(obj).parent().parent().remove();
return true;
},
delete_one:function(identifier,obj)
{
var idx = $('th').index($(obj).parent());
$("#"+identifier+"_tbl tr").each(function(){
$(this).find('td:eq('+idx+')').remove();
});
$(obj).parent().remove();
},
add_ele_mul:function(identifier,width)
{
if(!width || width == 'undefined'){
width = '120';
}
var val = $("#ele_"+identifier).val();
var th = '<th>';
th += '<input type="text" name="'+identifier+'_title[]" class="layui-input" value="'+val+'" />';
th += '<div style="position: absolute;top:5px;right:5px;" title="'+p_lang('删除')+'" onclick="$.phpok_form_param.delete_one(\''+identifier+'\',this)"><i class="layui-icon layui-icon-close-fill"></i></div>'
th += '</th>';
$("#"+identifier+"_tbl tr:eq(0)").append(th);
//定制列
$("#"+identifier+"_tbl tr").each(function(i){
if(i>0){
var td = '<td><input type="text" name="'+identifier+'_body[]" class="layui-input" value="" /></td>';
$(this).append(td);
}
});
$("#ele_"+identifier).val('');
},
add_ele_single:function(identifier,width)
{
var val = $("#ele_"+identifier).val();
var html = '<div style="margin-bottom:10px;"><ul class="layout">';
html += '<li><input type="text" name="'+identifier+'_title[]" class="layui-input" value="'+val+'"/></li>';
html += '<li><input type="text" name="'+identifier+'_body[]" class="layui-input" /></li>';
html += '<li style="margin-top:3px;"><input type="button" value="'+p_lang('删除')+'" class="layui-btn layui-btn-sm layui-btn-danger" onclick="$.phpok_form_param.delete_line_single(this)" /></li>';
html += '</ul><div class="clear"></div></div>';
$("#list_"+identifier).append(html);
$("#ele_"+identifier).val('');
},
delete_line_single:function(obj)
{
$(obj).parent().parent().parent().remove();
return true;
}
}
})(jQuery);