次のコードがあります
<b class="xyzxterms" style="cursor: default; ">bryant keil bio</b>
b
タグをタグに置き換えるが、h1
他のすべての属性と情報は保持する方法を教えてください。
次のコードがあります
<b class="xyzxterms" style="cursor: default; ">bryant keil bio</b>
b
タグをタグに置き換えるが、h1
他のすべての属性と情報は保持する方法を教えてください。
回答:
jQueryでこれを行う方法の1つを次に示します。
var attrs = { };
$.each($("b")[0].attributes, function(idx, attr) {
attrs[attr.nodeName] = attr.nodeValue;
});
$("b").replaceWith(function () {
return $("<h1 />", attrs).append($(this).contents());
});
例: http : //jsfiddle.net/yapHk/
アップデート、ここにプラグインがあります:
(function($) {
$.fn.changeElementType = function(newType) {
var attrs = {};
$.each(this[0].attributes, function(idx, attr) {
attrs[attr.nodeName] = attr.nodeValue;
});
this.replaceWith(function() {
return $("<" + newType + "/>", attrs).append($(this).contents());
});
};
})(jQuery);
children
うまくいきませんcontents
でした。
.each
以下の答えが示すように、それは本当にブロックに包まれるべきです。
jQueryについては不明です。単純なJavaScriptを使用すると、次のことができます。
var new_element = document.createElement('h1'),
old_attributes = element.attributes,
new_attributes = new_element.attributes;
// copy attributes
for(var i = 0, len = old_attributes.length; i < len; i++) {
new_attributes.setNamedItem(old_attributes.item(i).cloneNode());
}
// copy child nodes
do {
new_element.appendChild(element.firstChild);
}
while(element.firstChild);
// replace element
element.parentNode.replaceChild(new_element, element);
ブラウザー間の互換性についてはわかりません。
バリエーションは次のとおりです。
for(var i = 0, len = old_attributes.length; i < len; i++) {
new_element.setAttribute(old_attributes[i].name, old_attributes[i].value);
}
詳細については、Node.attributes
[MDN]を参照してください。
while(child = child.nextSibling)
失敗したことです。ありがとう!
@jakovおよび@Andrew Whitaker
複数の要素を一度に処理できるように、さらに改善を加えました。
$.fn.changeElementType = function(newType) {
var newElements = [];
$(this).each(function() {
var attrs = {};
$.each(this.attributes, function(idx, attr) {
attrs[attr.nodeName] = attr.nodeValue;
});
var newElement = $("<" + newType + "/>", attrs).append($(this).contents());
$(this).replaceWith(newElement);
newElements.push(newElement);
});
return $(newElements);
};
@Jazzboの回答では、jQueryオブジェクトの配列を含むjQueryオブジェクトが返されましたが、これはチェーン化できませんでした。$ .eachが返すものに似たオブジェクトを返すように変更しました。
$.fn.changeElementType = function (newType) {
var newElements,
attrs,
newElement;
this.each(function () {
attrs = {};
$.each(this.attributes, function () {
attrs[this.nodeName] = this.nodeValue;
});
newElement = $("<" + newType + "/>", attrs).append($(this).contents());
$(this).replaceWith(newElement);
if (!newElements) {
newElements = newElement;
} else {
$.merge(newElements, newElement);
}
});
return $(newElements);
};
(jslintを渡すようにコードのクリーンアップも行いました。)
each
ループ内で変数を再宣言する必要がないと思います)。
私が考えることができる唯一の方法は、手動ですべてをコピーすることです:例jsfiddle
HTML
<b class="xyzxterms" style="cursor: default; ">bryant keil bio</b>
jquery / JavaScript
$(document).ready(function() {
var me = $("b");
var newMe = $("<h1>");
for(var i=0; i<me[0].attributes.length; i++) {
var myAttr = me[0].attributes[i].nodeName;
var myAttrVal = me[0].attributes[i].nodeValue;
newMe.attr(myAttr, myAttrVal);
}
newMe.html(me.html());
me.replaceWith(newMe);
});
@Andrew Whitaker:この変更を提案します。
$.fn.changeElementType = function(newType) {
var attrs = {};
$.each(this[0].attributes, function(idx, attr) {
attrs[attr.nodeName] = attr.nodeValue;
});
var newelement = $("<" + newType + "/>", attrs).append($(this).contents());
this.replaceWith(newelement);
return newelement;
};
その後、次のようなことができます: $('<div>blah</div>').changeElementType('pre').addClass('myclass');
@AndrewWhitakerなどのアイデアが好きで、jQueryプラグインを使用して、changeElementType()
メソッドを追加しています。しかし、プラグインはブラックボックスのようなものであり、コードが小さくても問題なく機能する場合は問題ありません。したがって、パフォーマンスが必要であり、コードよりも重要です。
「純粋なJavaScript」はjQuery よりもパフォーマンスが優れています。@ FelixKlingのコードは@AndrewWhitakerなどのコードよりもパフォーマンスが優れていると思います。
ここでは、jQueryプラグインにカプセル化された「純粋なJavavascript」(および「純粋なDOM」)コードを示します。
(function($) { // @FelixKling's code
$.fn.changeElementType = function(newType) {
for (var k=0;k<this.length; k++) {
var e = this[k];
var new_element = document.createElement(newType),
old_attributes = e.attributes,
new_attributes = new_element.attributes,
child = e.firstChild;
for(var i = 0, len = old_attributes.length; i < len; i++) {
new_attributes.setNamedItem(old_attributes.item(i).cloneNode());
}
do {
new_element.appendChild(e.firstChild);
}
while(e.firstChild);
e.parentNode.replaceChild(new_element, e);
}
return this; // for chain... $(this)? not working with multiple
}
})(jQuery);
ここに私がjqueryのhtmlタグを置き換えるために使用する方法があります:
// Iterate over each element and replace the tag while maintaining attributes
$('b.xyzxterms').each(function() {
// Create a new element and assign it attributes from the current element
var NewElement = $("<h1 />");
$.each(this.attributes, function(i, attrib){
$(NewElement).attr(attrib.name, attrib.value);
});
// Replace the current element with the new one and carry over the contents
$(this).replaceWith(function () {
return $(NewElement).append($(this).contents());
});
});
jQuery
せずに属性を反復処理:replaceElem
以下の方法は受け入れold Tag
、new Tag
そしてcontext
、正常に交換を実行します。
replaceElem('h2', 'h1', '#test');
function replaceElem(oldElem, newElem, ctx) {
oldElems = $(oldElem, ctx);
//
$.each(oldElems, function(idx, el) {
var outerHTML, newOuterHTML, regexOpeningTag, regexClosingTag, tagName;
// create RegExp dynamically for opening and closing tags
tagName = $(el).get(0).tagName;
regexOpeningTag = new RegExp('^<' + tagName, 'i');
regexClosingTag = new RegExp(tagName + '>$', 'i');
// fetch the outer elem with vanilla JS,
outerHTML = el.outerHTML;
// start replacing opening tag
newOuterHTML = outerHTML.replace(regexOpeningTag, '<' + newElem);
// continue replacing closing tag
newOuterHTML = newOuterHTML.replace(regexClosingTag, newElem + '>');
// replace the old elem with the new elem-string
$(el).replaceWith(newOuterHTML);
});
}
h1 {
color: white;
background-color: blue;
position: relative;
}
h1:before {
content: 'this is h1';
position: absolute;
top: 0;
left: 50%;
font-size: 5px;
background-color: black;
color: yellow;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="test">
<h2>Foo</h2>
<h2>Bar</h2>
</div>
幸運を...
JavaScriptソリューション
古い要素の属性を新しい要素にコピーします
const $oldElem = document.querySelector('.old')
const $newElem = document.createElement('div')
Array.from($oldElem.attributes).map(a => {
$newElem.setAttribute(a.name, a.value)
})
古い要素を新しい要素に置き換えます
$oldElem.parentNode.replaceChild($newElem, $oldElem)
map
未使用の新しい配列を作成しforEach
ます。これはで置き換えることができます。
これが私のバージョンです。基本的には@fiskhandlarnのバージョンですが、新しいjQueryオブジェクトを作成する代わりに、古い要素を新しく作成された要素で上書きするだけなので、マージする必要はありません。
デモ:http : //jsfiddle.net/0qa7wL1b/
$.fn.changeElementType = function( newType ){
var $this = this;
this.each( function( index ){
var atts = {};
$.each( this.attributes, function(){
atts[ this.name ] = this.value;
});
var $old = $(this);
var $new = $('<'+ newType +'/>', atts ).append( $old.contents() );
$old.replaceWith( $new );
$this[ index ] = $new[0];
});
return this;
};