[Функция] html()
Раздел "Manipulation"
Получить содержимое в виде html (innerHTML) из первого выбранного элемента. Данное свойство недоступно для XML документов (хотя поддерживается в XHTML документах).
Параметры
Примеры
Пример:
При нажатии по параграфу, html конвертируется в текст.
"HTML"
<p> <b>Click</b> to change the <span id="tag">html</span> </p> <p> to a <span id="text">text</span> node. </p> <p> This <button name="nada">button</button> does nothing. </p>
"CSS"
p { margin:8px; font-size:20px; color:blue; cursor:pointer; } b { text-decoration:underline; } button { cursor:pointer; }
"Живой пример 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").click(function () { var htmlStr = $(this).html(); $(this).text(htmlStr); }); }); </script> </head> <body class="iframe"> <p> <b>Click</b> to change the <span id="tag">html</span> </p> <p> to a <span id="text">text</span> node. </p> <p> This <button name="nada">button</button> does nothing. </p> </body> </html> <style> p { margin:8px; font-size:20px; color:blue; cursor:pointer; } b { text-decoration:underline; } button { cursor:pointer; } </style>
Версия jQuery 1.4.2
Документ создан 2010-08-21