HTML DOM Strong 对象
HTML DOM Strong 对象与 HTML <strong> 元素关联。strong 标签用于强调,可以加粗文字。我们可以分别使用 createElement() 和 getElementById() 方法来创建和访问 strong 元素。
语法
以下是语法 -
创建 strong 对象 -
Var s= document.createElement("STRONG");
示例
让我们看一个有关 strong 对象的示例 -
<!DOCTYPE html> <html> <body> <h1>Strong object example</h1> <p>Create a strong element by clicking the below button</p> <button onclick="createStrong">CREATE</button> <p>This is some text inside the p element</p> <script> function createStrong() { var s = document.createElement("STRONG"); var txt = document.createTextNode("This is some text inside the strong element"); s.appendChild(txt); document.body.appendChild(s); } </script> </body> </html>
输出
这将产生以下输出 -
单击创建按钮 -
广告