我想从my中提取属性并将其复制到级别1的所有其他节点。
我的标题如下:
$( "#input" ).keyup(function(e) {
//.replace(/\s/g, ''); is for removing spaces
var str = $(e.currentTarget).val().replace(/\s/g, '');
var numberChunks = str.match(/.{1,4}/g);
console.log(numberChunks)
var result = numberChunks.join(' ');
console.log(result)
$(e.currentTarget).val(result)
});
当我得到一个名为DataEncryptionInfo的新的一个策略
<header xmlns="aa" xmlns:ds=bb" xmlns:xsi="cc" authenticate="true">
我需要
<DataEncryptionInfo authenticate="true">
当我将它转换为Element和setAttribute时,在验证后添加新属性,我是否需要将其删除,添加新闻并在最后添加我的身份验证?