当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM insertAdjacentText()用法及代码示例


HTML DOM insertAdjacentText() 方法在指定位置插入文本字符串。

用法

以下是语法 -

使用 positionString 和 text 参数调用 insertAdjacentText()

node.insertAdjacentText(“positionString”, text)

位置字符串

这里,“positionString”可以是以下 -

位置字符串描述
afterbegin它在节点元素的开头后插入文本
afterend它在节点元素之后插入文本
beforebegin它在节点元素之前插入文本
beforeend它在节点元素的结尾之前插入文本

示例

让我们看一个例子InsertAdjacentText()方法 -

<!DOCTYPE html>
<html>
<head>
<title>insertAdjacentText()</title>
<style>
   form {
      width:70%;
      margin:0 auto;
      text-align:center;
   }
   * {
      padding:2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius:10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>insertAdjacentText( )</legend>
<h1>First Muslim President of India</h1>
<h2 id="president">A.P.J Abdul Kalam</h2>
<input type="button" onclick="rectifyName()" value="Correct Name">
</fieldset>
</form>
<script>
   function rectifyName() {
      var presidentH2 = document.getElementById("president");
      presidentH2.insertAdjacentText("afterbegin", "DR. ");
   }
</script>
</body>
</html>

输出

这将产生以下输出 -

点击前‘Correct Name’按钮 -

点击后‘Correct Name’按钮 -

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM insertAdjacentText() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。