From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../global_objects/string/endswith/index.html | 98 ++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 files/zh-cn/web/javascript/reference/global_objects/string/endswith/index.html (limited to 'files/zh-cn/web/javascript/reference/global_objects/string/endswith') diff --git a/files/zh-cn/web/javascript/reference/global_objects/string/endswith/index.html b/files/zh-cn/web/javascript/reference/global_objects/string/endswith/index.html new file mode 100644 index 0000000000..f7ed81e221 --- /dev/null +++ b/files/zh-cn/web/javascript/reference/global_objects/string/endswith/index.html @@ -0,0 +1,98 @@ +--- +title: String.prototype.endsWith() +slug: Web/JavaScript/Reference/Global_Objects/String/endsWith +tags: + - JavaScript + - Method + - Prototype + - Reference + - String + - 原型 + - 参考 + - 字符串 + - 方法 +translation_of: Web/JavaScript/Reference/Global_Objects/String/endsWith +--- +

{{JSRef}}

+ +

endsWith()方法用来判断当前字符串是否是以另外一个给定的子字符串“结尾”的,根据判断结果返回 truefalse

+ +
{{EmbedInteractiveExample("pages/js/string-endswith.html")}}
+ + + +

语法

+ +
str.endsWith(searchString[, length])
+ +

参数

+ +
+
searchString
+
要搜索的子字符串。
+
length {{optional_inline}}
+
作为 str 的长度。默认值为 str.length
+
+ +

返回值

+ +

如果传入的子字符串在搜索字符串的末尾则返回true;否则将返回 false

+ +

描述

+ +

这个方法帮助你确定一个字符串是否在另一个字符串的末尾。这个方法是大小写敏感的。

+ +

Polyfill

+ +

这个方法已经加入到 ECMAScript 6 标准当中,但是可能还没有在所有的  JavaScript 实现中可用。然而,你可以通过如下的代码片段扩展 String.prototype.endsWith() 实现兼容:

+ +
if (!String.prototype.endsWith) {
+	String.prototype.endsWith = function(search, this_len) {
+		if (this_len === undefined || this_len > this.length) {
+			this_len = this.length;
+		}
+		return this.substring(this_len - search.length, this_len) === search;
+	};
+}
+
+ +

示例

+ +

使用 endsWith()

+ +
var str = "To be, or not to be, that is the question.";
+
+alert( str.endsWith("question.") );  // true
+alert( str.endsWith("to be") );      // false
+alert( str.endsWith("to be", 19) );  // true
+
+ +

规范

+ + + + + + + + + + +
规范
{{SpecName('ESDraft', '#sec-string.prototype.endswith', 'String.prototype.endsWith')}}
+ +

浏览器兼容性

+ + + +

{{Compat("javascript.builtins.String.endsWith")}}

+ +

参见

+ + -- cgit v1.2.3-54-g00ecf