[Функция] after(content)
Раздел "Manipulation"
Функция добавляет содержимое после каждого подходящего элемента.
Параметры
after(content)
1.0
content: содержимое, вставляемое после каждого объекта.
after(function)
1.4
after(function):Функция, возвращающая HTML строку для вставки её после каждого из подходящих элементов.
Примеры
Пример:
Вставить код HTML после всех параграфов.
"HTML"
<p>I would like to say: </p>
"CSS"
p { background:yellow; }
"Живой пример jQuery"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link href="http://test-drupal.ru/themes/slyweb/css/jqueryiframe.css" rel="stylesheet" type="text/css"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").after("<b>Hello</b>"); }); </script> </head> <body class="iframe"> <p>I would like to say: </p> </body> </html> <style> p { background:yellow; } </style>
Пример:
Вставить DOM элемент после всех параграфов.
"HTML"
<b>Hello</b> <p>I would like to say: </p>
"CSS"
p { background:yellow; }
"Живой пример jQuery"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link href="http://test-drupal.ru/themes/slyweb/css/jqueryiframe.css" rel="stylesheet" type="text/css"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").after( document.createTextNode("Hello") ); }); </script> </head> <body class="iframe"> <b>Hello</b> <p>I would like to say: </p> </body> </html> <style> p { background:yellow; } </style>
Пример:
$("p").after( $("b") );
"HTML"
<p>I would like to say: </p>
"CSS"
p { background:yellow; }
"Живой пример jQuery"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link href="http://test-drupal.ru/themes/slyweb/css/jqueryiframe.css" rel="stylesheet" type="text/css"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").after("<b>Hello</b>"); }); </script> </head> <body class="iframe"> <p>I would like to say: </p> </body> </html> <style> p { background:yellow; } </style>
Пример:
$("p").after( $("b") );
"HTML"
<p>I would like to say: </p>
"CSS"
p { border: 2px solid blue; } newelement { background:yellow; margin:4px; }
"Живой пример jQuery"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link href="http://test-drupal.ru/themes/slyweb/css/jqueryiframe.css" rel="stylesheet" type="text/css"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script> <script> $(document).ready(function(){ $('p').after(function() { return '<div class="newelement" >Новый элемент</div>'; }); }); </script> </head> <body class="iframe"> <p>I would like to say: </p> </body> </html> <style> p { border: 2px solid blue; } newelement { background:yellow; margin:4px; } </style>
Версия jQuery 1.4.2
Документ создан 2010-08-21