当前位置: 首页 > 工具软件 > End.js > 使用案例 >

js实现endwith方法

裴和怡
2023-12-01

js实现endwith方法

<script>
String.prototype.endWith = function (endStr) {
      var d = this.length - endStr.length;
      return (d >= 0 && this.lastIndexOf(endStr) == d)
    }
// 调用
var test = 'test.html';
console.log(test.endwith('.html')) 
</script>
 类似资料: