必威体育Betway必威体育官网
当前位置:首页 > IT技术

DOM中cloneNode的使用之旅

时间:2019-10-25 05:11:05来源:IT技术作者:seo实验室小编阅读:84次「手机版」
 

clonenode

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

struts2中可以自动封装表单提交过来的参数

List<RuleHour> exSeasonOut = new ArrayList<RuleHour>();

<tr id="exSeasonOutTr">
    <td>
        <sky:datePicker name="ruleVO.exSeasonOut[${status.index}].fromDate,ruleVO.exSeasonOut[${status.index}].toDate" />
    </td>
</tr>

但是页面中需要可以通过js动态添加行,实现代码如下

$("exSeason").on("click",addRow);


/* copy the tr(id) and APPend to the table, change the id、name of the new tr at the same time */
function addRow(id) { 
	var tr = $(id);
	
	if(!tr.index) {
		tr.index = 0;
	}
	tr.index++;
	
	var newTr = tr.cloneNode(true);
	newTr.innerHTML = newTr.innerHTML.replace(/[\d]/g, tr.index);
	
	tr.parentelement.appendChild(newTr);
}

看一下这行代码的效果:

newTr.innerHTML = newTr.innerHTML.replace(/[\d]/g, tr.index);

08154840_mORy.bmp

结果td的起始标签不见了,替换后只剩下td的结束标签,原因未知

08154840_YgxM.bmp

然后试着将td的innerHTML进行替换

newTr.childNodes[0].innerHTML = newTr.childNodes[0].innerHTML.replace(/[\d]/g, tr.index);

08154840_amMa.bmp

调试一看,样式及一些自定义属性不见了

08154841_qQG2.bmp

08154841_81gZ.bmp

没办法,只能找出所有input,改变其id、name了

var inputs = newTr.$T("input");
for(var i=0;i<inputs.length;i++) {
    inputs[i].id = inputs[i].id.replace(/[\d]/g, tr.index);
    inputs[i].name = inputs[i].name.replace(/[\d]/g, tr.index);
}

完美了?测试看看效果

08154841_Kpzb.bmp

点击最下面的时间选择控件,结果发现,其定位到了第一行中的tr上去了,newTr中元素绑定的事件都绑定到原始tr了,看来cloneNode(true)会拷贝元素在内存中的所有状态

08154841_B7jA.bmp

还是老老实实的通过dom创建元素吧:

<fieldset>
                <legend>
                    <p style="float:left;">季节</p>
                    <p style="float:left;"> <input type="button" value="添加" value="删除" border="1" cellpadding="2" cellspacing="0" bordercolor="#cccccc"
                                   style="border-collapse:collapse">
                    <s:iterator value="ruleVO.seasonOut" var="seasonOut" status="status">   
                    <s:hidden name="ruleVO.seasonOut[%{#status.index}].id" />                                    
                    <tr id="seasonOutTr">
                        <td>
                            <sky:datePicker name="ruleVO.seasonOut[${status.index}].fromDate,ruleVO.seasonOut[${status.index}].toDate" />
                        </td>
                    </tr>
                    </s:iterator>
                </table>
            </fieldset>








/* copy the tr(id) and append to the table, change the id、name of the new tr at the same time */
        function addRow(id) { 
            var tr = $(id);
            
            if(!tr.index) {
                tr.index = 0;
            }
            tr.index++;
            
            var newTr = tr.cloneNode(true);
            //newTr.innerHTML = newTr.innerHTML.replace(/[\d]/g, tr.index);
            //newTr.childNodes[0].innerHTML = newTr.childNodes[0].innerHTML.replace(/[\d]/g, tr.index);
            var inputs = newTr.$T("input");
            for(var i=0;i<inputs.length;i++) {
                inputs[i].id = inputs[i].id.replace(/[\d]/g, tr.index);
                inputs[i].name = inputs[i].name.replace(/[\d]/g, tr.index);
                
                if(inputs[i].id.indexof("from") != -1) {
                    inputs[i].onclick = function() {
                        WdatePicker({
                            dateFmt:'yyyy-MM-dd',
                            maxDate:'#F{$dp.$D(\'' + this.id.replace("from", "to") + '\')}'
                        });
                    };
                } else {
                    inputs[i].onclick = function() {
                        WdatePicker({
                            dateFmt:'yyyy-MM-dd',
                            minDate:'#F{$dp.$D(\'' + this.id.replace("to", "from") + '\')}'
                        });
                    };
                }
            }
            
            tr.parentElement.appendChild(newTr);
        }
        
        function addCombineFaresRow(id) {
            var tr = $(id);
            
            if(!tr.index) {
                tr.index = 0;
            }
            
            tr.index++;
            var newTr = tr.cloneNode(true);
            var inputs = newTr.$T("input");
            for(var i=0;i<inputs.length;i++) {
                inputs[i].id = inputs[i].id.replace(/[\d]/g, tr.index);
                inputs[i].name = inputs[i].name.replace(/[\d]/g, tr.index);
                if(inputs[i].id.indexOf("seqId") != -1) {
                    inputs[i].value = tr.index+1;
                }
            }
            
            tr.parentElement.appendChild(newTr);
        }
        
        /* delete the table's last tr */
        function deleteRow(id) {
            var tr = $(id);
            
            if(!tr.index || tr.index==0) {
                return;
            }
            
            var trs = tr.parentElement.childNodes;
            tr.parentElement.removeChild(trs[trs.length-1]);
            tr.index--;
        }


function addTimeRow(id) {
            var table = $(id);
            var count = table.rows.length;
            var tr = table.insertRow();
            var td = tr.insertCell();
            var names = [id + "["+count+"].fromDate", id + "["+count+"].toDate"];
            
            td.appendChild(Sky.createEl({
                tag: "input", name: names[0], 
                className: ["datePicker", "date"], onClick: function(){
                    WdatePicker({dateFmt:'yyyy-MM-dd',maxDate:'#F{$dp.$D(\''+names[1]+'\')}'});
                }
            }));
            td.appendChild(Sky.createText(" - "));
            td.appendChild(Sky.createEl({
                tag: "input", name: names[1], 
                className: ["datePicker", "date"], onClick: function(){
                    WdatePicker({dateFmt:'yyyy-MM-dd',minDate:'#F{$dp.$D(\''+names[0]+'\')}'});
                }
            }));
        }

08154841_hsxw.jpg

08154841_oXIJ.jpg

OK,搞定......

转载于:https://my.oschina.net/darkness/blog/802210

文章最后发布于: 2016-12-08 15:48:00

相关阅读

UUID.randomUUID()简单介绍

UUID含义是通用唯一识别码 (Universally Unique Identifier),这 是一个软件建构的标准,也是被开源软件基金会 (Open Software Found

JAVA基于dom4j实现对XML操作

该篇博客写java基于dom4j来操作xml的一些基本实现,需要用到以下jar包 该篇博客目录 1、XML特点、语法规则 2、XML与HT

关于Random.nextInt()

Random.nextInt()随机产生一个数,如果有参数就是在0到参数之间产生。 如果Random对象指定了种子,Random r = new Random(100),那么

py001- random中sample()函数的用法

sample(list, k)返回一个长度为k新列表,新列表存放list所产生k个随机不重复的元素函数用法实例:import random list = [1, 2, 3] p

解决“DNS_PROBE_FINISHED_NXDOMAIN”问题

阿里云服务器备案通过之后,服务器环境搭建部署完毕。但是,无法实现外网链接访问,并伴有错误代码:DNS_PROBE_FINISHED_NXDOMAIN ? 如何

分享到:

栏目导航

推荐阅读

热门阅读