как удалить все атрибуты из с помощью js или jquery
Как удалить все атрибуты из с помощью js или jquery. (Я не знаю, что такое атрибуты в теле, я хочу удалить их все)
5 ответов
вы можете использовать DOM Level 1 Core attributes
свойство для доступа к атрибутам в виде списка. Как простой JS:
function removeAllAttrs(element) {
for (var i= element.attributes.length; i-->0;)
element.removeAttributeNode(element.attributes[i]);
}
removeAllAttrs(document.body);
или одетый в одежду плагина jQuery:
$.fn.removeAllAttrs= function() {
return this.each(function() {
$.each(this.attributes, function() {
this.ownerElement.removeAttributeNode(this);
});
});
};
$('body').removeAllAttrs();
предполагая, что вы хотите удалить атрибуты element
, вы можете использовать что-то вроде
$(element).removeAttr($.makeArray(element.attributes)
.map(function(item){ return item.name;})
.join(' '));
обратите внимание, что это будет работать только с jQuery 1.7+
var $newBody = $('<body>');
$newBody.append( $('body').contents() );
$('body').replaceWith( $newBody );
что-то вроде этого может сработать.
Я не знаю, лучший ли это способ, но он работает
$('body').each(function(){
var $body = $(this);
var attributes = $.makeArray(this.attributes);
$.each(attributes, function(indexInArray, valueOfElement) {
$body.removeAttr(valueOfElement.name);
});
});
начиная с ES2015, вы можете использовать массив.от ().
const el = document.body;
const attributes = Array.from(el.attributes);
attributes.forEach(attr => el.removeAttributeNode(attr));