原型 - addClassName() 方法
此方法向元素添加 CSS 类。
语法
element.addClassName(className);
返回值
已添加 CSS 类的 HTML 元素。
示例
<html> <head> <title>Prototype examples</title> <script type="text/javascript" src = "/javascript/prototype.js"></script> <script> function addClass() { node = $("firstDiv"); node.addClassName("title"); } </script> </head> <style type = "text/css"> .title { color:#36C; font-size:20px; } </style> <body> <div id = "firstDiv"> <p>This is first paragraph</p> </div> <br /> <input type = "button" value = "Add Class" onclick = "addClass();"/> </body> </html>
输出
prototype_element_object.htm
广告