[Функция] replaceAll(selector)
Раздел "Manipulation"
Функция заменяет элементы, подобранные по заданному селектору соответствующими элементами.
Параметры
replaceAll(selector)
1.2
selector: искомый и заменяемый элемент, подходящими элементами.
Описание
Функция дополняет метод replaceWith() и выполняет ту же задачу с перевернутыми параметрами.
Примеры
Пример:
Заменить все параграфы элементом <b>>.
"jQuery"
$("<b>Paragraph. </b>").replaceAll("p"); // сравните с replaceWith()
"HTML"
<p>Hello</p> <p>cruel</p> <p>World</p>
"CSS"
button { display:block; margin:3px; color:red; width:200px; } div { color:red; border:2px solid blue; width:200px; margin:3px; text-align:center; }
"Живой пример 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(){ $("<b>Paragraph. </b>").replaceAll("p"); // сравните с replaceWith() }); </script> </head> <body class="iframe"> <p>Hello</p> <p>cruel</p> <p>World</p> </body> </html> <style> button { display:block; margin:3px; color:red; width:200px; } div { color:red; border:2px solid blue; width:200px; margin:3px; text-align:center; } </style>
Версия jQuery 1.4.2
Документ создан 2010-08-21