JavaScript lastIndex 属性


JavaScript 中的 lastIndex 属性返回匹配发生时的索引位置,并且下一个匹配将仅从该位置重新开始。lastIndex 属性仅在设置了“g”修饰符时才有效。

以下是 JavaScript 中 lastIndex 属性的代码 -

示例

 现场演示

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .sample,
   .result {
      font-size: 18px;
      font-weight: 500;
      color: red;
   }
</style>
</head>
<body>
<h1>JavaScript lastIndex Property</h1>
<div class="sample">The king bought an expensive ring.</div>
<div style="font-weight: bold; color: black;" class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>
Click on the above button to find the index of 'ing' in the above string
</h3>
<script>
   let sampleEle = document.querySelector(".sample");
   let resultEle = document.querySelector(".result");
   let regex = new RegExp("ing", "g");
   regex.test(sampleEle.innerHTML);
   document.querySelector(".Btn").addEventListener("click", () => {
      resultEle.innerHTML +='"ing" found Current Index = ' + regex.lastIndex + "<br>";
      regex.test(sampleEle.innerHTML);
      resultEle.innerHTML += '"ing" found Current Index = ' + regex.lastIndex;
   });
</script>
</body>
</html>

输出

单击“单击此处”按钮时 -

更新于: 2020 年 5 月 11 日

86 次浏览

开启您的 职业

完成课程并获得认证

开始
广告
© . All rights reserved.