Jquery after вставить html

Содержание
  1. Манипуляции с элементами jQuery
  2. Проверка
  3. Проверка наличия элемента:
  4. Пустой или нет:
  5. Проверка элементов до и после
  6. Перед элементом:
  7. После элемента:
  8. Добавление
  9. Вставить перед элементом:
  10. Вставить после элемента:
  11. Пример работы before и after:
  12. Добавить до n-го элемента:
  13. Добавить после n-го элемента:
  14. Добавить в начало элемента:
  15. Добавить в конец элемента:
  16. Пример работы prepend и append:
  17. Оборачивание
  18. Обернуть элемент снаружи
  19. Пример работы wrap:
  20. Обернуть несколько элементов одним
  21. Пример работы wrapAll:
  22. Обернуть содержимое элемента
  23. Пример работы wrapInner:
  24. Замена
  25. Клонирование
  26. Пример работы clone:
  27. Удаление
  28. Удалить элемент с содержимым:
  29. .after()
  30. .after( content [, content ] ) Возвращает: jQuery
  31. Добавлен в версии: 1.0 .after( content [, content ] )
  32. Добавлен в версии: 1.4 .after( function )
  33. Добавлен в версии: 1.10 .after( function-html )
  34. Passing a Function
  35. Additional Arguments
  36. Дополнительные замечания:
  37. .insertAfter()
  38. version added: 1.0 .insertAfter( target )
  39. Additional Notes:
  40. Example:

Манипуляции с элементами jQuery

Сборник методов jQuery для управления элементами DOM.

Проверка

Проверить элементы на наличие, заполненность можно с помощью следующих способов:

Проверка наличия элемента:

Пустой или нет:

if ($('.element').is(':empty')) < alert('.element пуст'); >if ('.element:not(:empty)')

Проверка элементов до и после

Комбинацией методов prev() , next() и is() можно узнать о предыдущем и последующим элемент в общем родителе.

Перед элементом:

if ($('.element').prev().is('div')) < alert('Перед .element есть div'); >if ($('.element').prev().is(':empty'))

После элемента:

if ($('.element').next().is('div')) < alert('После .element есть div'); >if ($('.element').next().is(':empty'))

Добавление

Вставить перед элементом:

$('ul').before('

Новый параграф

'); /* или */ $('

Новый параграф

').insertBefore('ul');

Вставить после элемента:

$('ul').after('

Новый параграф

'); /* или */ $('

Новый параграф

').insertAfter('ul');

Пример работы before и after:

Далее, селектором :eq(n) можно добавить контент у порядкового элемента.

Добавить до n-го элемента:

$('ul:eq(1)').before('

Новый параграф

');

Добавить после n-го элемента:

Добавить в начало элемента:

Добавить в конец элемента:

Пример работы prepend и append:

Оборачивание

Обернуть элемент снаружи

wrap() – оборачивает каждый выбранный элемент в указанную обертку.

Пример работы wrap:

Ещё один пример оборачивает все изображения ссылками:

Обернуть несколько элементов одним

$('p').wrapAll(''); /* Так-же можно указать список элементов */ $('.class1, .class2, .class3').wrapAll('');

Пример работы wrapAll:

Обернуть содержимое элемента

$('.element').wrapInner(' '); /* или */ $('.element').wrapInner('');

Пример работы wrapInner:

Замена

Методы replaceWith() или replaceAll() заменяют элемент другим элементом, включая его содержимое.

$('div').replaceWith('

123

'); /* или */ $('

123

').replaceAll('div');

Если нужно заменить тег, но оставить его содержимое:

$('.element').replaceWith('

' + $('.element').html() + '

'); /* или */ $('

' + $('.element').html() + '

').replaceAll('.element');

Если нужно сохранить все атрибуты старого тега и содержимое:

$('#element').replaceWith(function()< $new = $('

', ); $.each(this.attributes, function(i, attribute)< $new.attr(attribute.name, attribute.value); >); return $new; >);

Клонирование

.clone(withDataAndEvents, deepWithDataAndEvents) – создает копию элемента, если в параметре withDataAndEvents указать true, то так-же скопируются все данные и обработчики элемента. Параметр deepWithDataAndEvents отвечает за копирование обработчиков у дочерних элементов, по умолчанию равен withDataAndEvents .

 var new_element = $('.element').clone(true); $('body').append(new_element);

Пример работы clone:

Удаление

Метод remove() удаляет элемент полностью, включая повешенные на него события и освобождает память.

Удалить элемент с содержимым:

Метод detach() как бы скрывает элемент, поэтому если повторно добавить этот элемент в DOM, он сохранит все события и свойства.

Источник

.after()

.after( content [, content ] ) Возвращает: jQuery

Описание: Функция вставляет заданное содержимое сразу после определенных элементов страницы.

Добавлен в версии: 1.0 .after( content [, content ] )

HTML string, DOM element, text node, array of elements and text nodes, or jQuery object to insert after each element in the set of matched elements.

One or more additional DOM elements, text nodes, arrays of elements and text nodes, HTML strings, or jQuery objects to insert after each element in the set of matched elements.

Добавлен в версии: 1.4 .after( function )

A function that returns an HTML string, DOM element(s), text node(s), or jQuery object to insert after each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.

Добавлен в версии: 1.10 .after( function-html )

A function that returns an HTML string, DOM element(s), text node(s), or jQuery object to insert after each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set.

The .after() and .insertAfter() methods perform the same task. The major difference is in the syntax—specifically, in the placement of the content and target. With .after() , the content to be inserted comes from the method’s argument: $(target).after(contentToBeInserted) . With .insertAfter() , on the other hand, the content precedes the method and is inserted after the target, which in turn is passed as the .insertAfter() method’s argument: $(contentToBeInserted).insertAfter(target) .

div class="container">
h2>Greetings h2>
div class="inner">Hello div>
div class="inner">Goodbye div>
div>

Content can be created and then inserted after several elements at once:

Each inner element gets this new content:

div class="container">
h2>Greetings h2>
div class="inner">Hello div>
p>Test p>
div class="inner">Goodbye div>
p>Test p>
div>

An element in the DOM can also be selected and inserted after another element:

If an element selected this way is inserted into a single location elsewhere in the DOM, it will be moved rather than cloned:

div class="container">
div class="inner">Hello div>
div class="inner">Goodbye div>
div>
h2>Greetings h2>

Important: If there is more than one target element, however, cloned copies of the inserted element will be created for each target except for the last one.

Passing a Function

As of jQuery 1.4, .after() supports passing a function that returns the elements to insert.

$( "p" ).after(function()
return "
" + this.className + "
"
;
>);

This example inserts a after each paragraph, with each new containing the class name(s) of its preceding paragraph.

Additional Arguments

Similar to other content-adding methods such as .prepend() and .before() , .after() also supports passing in multiple arguments as input. Supported input includes DOM elements, jQuery objects, HTML strings, and arrays of DOM elements.

For example, the following will insert two new s and an existing after the first paragraph:

var $newdiv1 = $( " " ),
newdiv2 = document.createElement( "div" ),
existingdiv1 = document.getElementById( "foo" );
$( "p" ).first().after( $newdiv1, [ newdiv2, existingdiv1 ] );

Since .after() can accept any number of additional arguments, the same result can be achieved by passing in the three s as three separate arguments, like so: $( "p" ).first().after( $newdiv1, newdiv2, existingdiv1 ) . The type and number of arguments will largely depend on the elements that are collected in the code.

Дополнительные замечания:

  • Prior to jQuery 1.9, .after() would attempt to add or change nodes in the current jQuery set if the first node in the set was not connected to a document, and in those cases return a new jQuery set rather than the original set. The method might or might not have returned a new result depending on the number or connectedness of its arguments! As of jQuery 1.9, .after() , .before() , and .replaceWith() always return the original unmodified set. Attempting to use these methods on a node without a parent has no effect—that is, neither the set nor the nodes it contains are changed.
  • By design, any jQuery constructor or method that accepts an HTML string — jQuery(), .append(), .after(), etc. — can potentially execute code. This can occur by injection of script tags or use of HTML attributes that execute code (for example, ). Do not use these methods to insert strings obtained from untrusted sources such as URL query parameters, cookies, or form inputs. Doing so can introduce cross-site-scripting (XSS) vulnerabilities. Remove or escape any user input before adding content to the document.

Источник

.insertAfter()

Description: Insert every element in the set of matched elements after the target.

version added: 1.0 .insertAfter( target )

A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter.

The .after() and .insertAfter() methods perform the same task. The major difference is in the syntax—specifically, in the placement of the content and target. With .after() , the selector expression preceding the method is the container after which the content is inserted. With .insertAfter() , on the other hand, the content precedes the method, either as a selector expression or as markup created on the fly, and it is inserted after the target container.

Consider the following HTML:

div class="container">
h2>Greetings h2>
div class="inner">Hello div>
div class="inner">Goodbye div>
div>

We can create content and insert it after several elements at once:

Each inner element gets this new content:

div class="container">
h2>Greetings h2>
div class="inner">Hello div>
p>Test p>
div class="inner">Goodbye div>
p>Test p>
div>

We can also select an element on the page and insert it after another:

$( "h2" ).insertAfter( $( ".container" ) );

If an element selected this way is inserted into a single location elsewhere in the DOM, it will be moved after the target (not cloned) and a new set consisting of the inserted element is returned:

div class="container">
div class="inner">Hello div>
div class="inner">Goodbye div>
div>
h2>Greetings h2>

If there is more than one target element, however, cloned copies of the inserted element will be created for each target after the first, and that new set (the original element plus clones) is returned.

Before jQuery 1.9, the append-to-single-element case did not create a new set, but instead returned the original set which made it difficult to use the .end() method reliably when being used with an unknown number of elements.

Additional Notes:

  • By design, any jQuery constructor or method that accepts an HTML string — jQuery(), .append(), .after(), etc. — can potentially execute code. This can occur by injection of script tags or use of HTML attributes that execute code (for example, ). Do not use these methods to insert strings obtained from untrusted sources such as URL query parameters, cookies, or form inputs. Doing so can introduce cross-site-scripting (XSS) vulnerabilities. Remove or escape any user input before adding content to the document.
  • jQuery doesn't officially support SVG. Using jQuery methods on SVG documents, unless explicitly documented for that method, might cause unexpected behaviors. Examples of methods that support SVG as of jQuery 3.0 are addClass and removeClass .

Example:

Insert all paragraphs after an element with id of "foo". Same as $( "#foo" ).after( "p" )

Источник

Читайте также:  Java create socket address
Оцените статью