原型 - replace() 方法
此方法使用 html 参数的内容替换元素,并返回被移除的元素。
语法
element.replace(html);
此处,html 可以是纯文本、HTML 代码段或具有 toString() 方法的任何 JavaScript 对象。
如果它包含任何 <script> 标记,则这些标记将在元素被替换后求值。
注意 − 如果未提供任何参数,Element.replace 将只清除元素的内容。
返回值
返回被移除的 HTML 元素。
示例
<html> <head> <title>Prototype examples</title> <script type = "text/javascript" src = "/javascript/prototype.js"></script> <script> function showResult() { $('first').replace('<ul id = "favorite">' + '<li>kiwi</li>' + '<li>banana</li>' + '<li>apple</li>' + '</ul>'); } </script> </head> <body"> <p id = "test">Click the button to see the result.</p> <div id = "food"> <div id = "fruits"> <p id = "first">Kiwi, banana <em>and</em> apple.</p> </div> </div> <input type = "button" value = "Click" onclick = "showResult();"/> </body> </html>
输出
prototype_element_object.htm
广告