Функция дополняет метод replaceWith() и выполняет ту же задачу с перевернутыми параметрами.
Пример:
Функция дополняет метод replaceWith() и выполняет ту же задачу с перевернутыми параметрами.
Пример:
$("<b>Paragraph. </b>").replaceAll("p"); // сравните с replaceWith()
<p>Hello</p> <p>cruel</p> <p>World</p>
button { display:block; margin:3px; color:red; width:200px; } div { color:red; border:2px solid blue; width:200px; margin:3px; text-align:center; }
<!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>