Heim Web-Frontend js-Tutorial Ausführliche Erläuterung der Array-Objekterweiterung und der String-Objekterweiterung in JS_Javascript-Kenntnissen

Ausführliche Erläuterung der Array-Objekterweiterung und der String-Objekterweiterung in JS_Javascript-Kenntnissen

May 16, 2016 pm 03:21 PM

Lassen Sie mich Ihnen ohne weitere Umschweife den Array-Objekt-Erweiterungscode zeigen. Der spezifische Code lautet wie folgt:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

/**

* Created by laixiangran on 2016/01/07.

* Array扩展

*/

(function() {

// 遍历数组

if (typeof Array.prototype.forEach != "function") {

Array.prototype.forEach = function (fn, context) {

for (var i = 0; i < this.length; i++) {

if (typeof fn === "function" && Object.prototype.hasOwnProperty.call(this, i)) {

fn.call(context, this[i], i, this);

}

}

};

}

// 让数组中的每一个元素调用给定的函数,然后把得到的结果放到新数组中返回

if (typeof Array.prototype.map != "function") {

Array.prototype.map = function (fn, context) {

var arr = [];

if (typeof fn === "function") {

for (var k = 0, length = this.length; k < length; k++) {

arr.push(fn.call(context, this[k], k, this));

}

}

return arr;

};

}

// 把符合条件的元素放到一个新数组中返回

if (typeof Array.prototype.filter != "function") {

Array.prototype.filter = function (fn, context) {

var arr = [];

if (typeof fn === "function") {

for (var k = 0, length = this.length; k < length; k++) {

fn.call(context, this[k], k, this) && arr.push(this[k]);

}

}

return arr;

};

}

// 如果数组中的每个元素都能通过给定的函数的测试,则返回true,反之false

if (typeof Array.prototype.every != "function") {

Array.prototype.every = function (fn, context) {

var passed = true;

if (typeof fn === "function") {

for (var k = 0, length = this.length; k < length; k++) {

if (passed === false) break;

passed = !!fn.call(context, this[k], k, this);

}

}

return passed;

};

}

// 类似every函数,但只要有一个通过给定函数的测试就返回true

if (typeof Array.prototype.some != "function") {

Array.prototype.some = function (fn, context) {

var passed = false;

if (typeof fn === "function") {

for (var k = 0, length = this.length; k < length; k++) {

if (passed === true) break;

passed = !!fn.call(context, this[k], k, this);

}

}

return passed;

};

}

// 返回元素在数组的索引,没有则返回-1,从左到右

if (typeof Array.prototype.indexOf != "function") {

Array.prototype.indexOf = function (item, index) {

var n = this.length,

i = index == null &#63; 0 : index < 0 &#63; Math.max(0, n + index) : index;

for (; i < n; i++) {

if (i in this && this[i] === item) {

return i

}

}

return -1

};

}

// 返回元素在数组的索引,没有则返回-1,从右到左

if (typeof Array.prototype.lastIndexOf != "function") {

Array.prototype.lastIndexOf = function (item, index) {

var n = this.length,

i = index == null &#63; n-1 : index < 0 &#63; Math.max(0, n + index) : index;

for (; i >= 0; i--) {

if (i in this && this[i] === item) {

return i;

}

}

return -1;

};

}

// 让数组元素依次调用给定函数,最后返回一个值(从左到右)

if (typeof Array.prototype.reduce != "function") {

Array.prototype.reduce = function (callback, initialValue) {

var previous = initialValue, k = 0, length = this.length;

if (typeof initialValue === "undefined") {

previous = this[0];

k = 1;

}

if (typeof callback === "function") {

for (k; k < length; k++) {

this.hasOwnProperty(k) && (previous = callback(previous, this[k], k, this));

}

}

return previous;

};

}

// 让数组元素依次调用给定函数,最后返回一个值(从右到左)

if (typeof Array.prototype.reduceRight != "function") {

Array.prototype.reduceRight = function (callback, initialValue) {

var length = this.length, k = length - 1, previous = initialValue;

if (typeof initialValue === "undefined") {

previous = this[length - 1];

k--;

}

if (typeof callback === "function") {

for (k; k > -1; k-=1) {

this.hasOwnProperty(k) && (previous = callback(previous, this[k], k, this));

}

}

return previous;

};

}

// 去掉重复项(唯一性),返回新数组

if (typeof Array.prototype.uniq != "function") {

Array.prototype.uniq = function() {

var arr = [];

arr[0] = this[0];

for (var i = 1; i < this.length; i++) {

if (arr.indexOf(this[i]) == -1) {

arr.push(this[i]);

}

}

return arr;

};

}

// 指定删除数组中某值

if (typeof Array.prototype.remove != "function") {

Array.prototype.remove = function(item) {

for (var i = this.length; i >= 0; i--) {

if (item === this[i]) {

this.splice(i, 1);

}

}

return this;

};

}

// 打乱数组顺序

if (typeof Array.prototype.shuffle != "function") {

Array.prototype.shuffle = function() {

var i = this.length;

while (i) {

var j = Math.floor(Math.random()*i);

var t = this[--i];

this[i] = this[j];

this[j] = t;

}

return this;

};

}

// 求数组的最大值

if (typeof Array.prototype.max != "function") {

Array.prototype.max = function() {

return Math.max.apply({}, this)

};

}

// 求数组的最小值

if (typeof Array.prototype.max != "function") {

Array.prototype.min = function() {

return Math.min.apply({}, this)

};

}

 

// 判断是否为数组

if (typeof Array.prototype.isArray != "function") {

Array.prototype.isArray = function() {

return Object.prototype.toString.apply(this) === "[object Array]";

};

}

}());

Nach dem Login kopieren

Das Folgende ist der String-Objekt-Erweiterungscode wie folgt:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

/**

* Created by laixiangran on 2015/12/12.

* String扩展

*/

(function() {

// 十六进制颜色值的正则表达式

var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;

// RGB颜色转换为16进制

if (typeof String.prototype.rgbToHex != "function") {

String.prototype.rgbToHex = function() {

var that = this;

if (/^(rgb|RGB)/.test(that)) {

var aColor = that.replace(/(&#63;:\(|\)|rgb|RGB)*/g,"").split(",");

var strHex = "#";

for (var i=0; i<aColor.length; i++) {

var hex = Number(aColor[i]).toString(16);

if (hex === "0") {

hex += hex;

}

strHex += hex;

}

if (strHex.length !== 7) {

strHex = that;

}

return strHex;

}else if (reg.test(that)) {

var aNum = that.replace(/#/,"").split("");

if (aNum.length === 6){

return that;

}else if (aNum.length === 3) {

var numHex = "#";

for (var j=0; j<aNum.length; j++) {

numHex += (aNum[j]+aNum[j]);

}

return numHex;

}

}else{

return that;

}

};

}

// 16进制颜色转为RGB格式

if (typeof String.prototype.hexToRgb != "function") {

String.prototype.hexToRgb = function() {

var sColor = this.toLowerCase();

if (sColor && reg.test(sColor)) {

if (sColor.length === 4) {

var sColorNew = "#";

for (var i = 1; i < 4; i++) {

sColorNew += sColor.slice(i,i+1).concat(sColor.slice(i,i+1));

}

sColor = sColorNew;

}

// 处理六位的颜色值

var sColorChange = [];

for (var j=1; j<7; j+=2) {

sColorChange.push(parseInt("0x"+sColor.slice(j,j+2)));

}

return "RGB(" + sColorChange.join(",") + ")";

}else{

return sColor;

}

};

}

// 移除字符串首尾空白

if (typeof String.prototype.trim != "function") {

String.prototype.trim = function() {

return this.replace(/^\s+|\s+$/g, "");

};

}

}());

Nach dem Login kopieren
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn

Heiße KI -Werkzeuge

Undresser.AI Undress

Undresser.AI Undress

KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover

AI Clothes Remover

Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool

Undress AI Tool

Ausziehbilder kostenlos

Clothoff.io

Clothoff.io

KI-Kleiderentferner

AI Hentai Generator

AI Hentai Generator

Erstellen Sie kostenlos Ai Hentai.

Heißer Artikel

Repo: Wie man Teamkollegen wiederbelebt
1 Monate vor By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)
2 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Abenteuer: Wie man riesige Samen bekommt
1 Monate vor By 尊渡假赌尊渡假赌尊渡假赌

Heiße Werkzeuge

Notepad++7.3.1

Notepad++7.3.1

Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version

SublimeText3 chinesische Version

Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1

Senden Sie Studio 13.0.1

Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6

Dreamweaver CS6

Visuelle Webentwicklungstools

SublimeText3 Mac-Version

SublimeText3 Mac-Version

Codebearbeitungssoftware auf Gottesniveau (SublimeText3)

Ersetzen Sie Stringzeichen in JavaScript Ersetzen Sie Stringzeichen in JavaScript Mar 11, 2025 am 12:07 AM

Detaillierte Erläuterung der Methode für JavaScript -Zeichenfolge und FAQ In diesem Artikel werden zwei Möglichkeiten untersucht, wie String -Zeichen in JavaScript ersetzt werden: Interner JavaScript -Code und interne HTML für Webseiten. Ersetzen Sie die Zeichenfolge im JavaScript -Code Die direkteste Möglichkeit ist die Verwendung der Ersatz () -Methode: str = str.replace ("find", "ersetzen"); Diese Methode ersetzt nur die erste Übereinstimmung. Um alle Übereinstimmungen zu ersetzen, verwenden Sie einen regulären Ausdruck und fügen Sie das globale Flag G hinzu:: STR = Str.Replace (/fi

Benutzerdefinierte Google -Search -API -Setup -Tutorial Benutzerdefinierte Google -Search -API -Setup -Tutorial Mar 04, 2025 am 01:06 AM

Dieses Tutorial zeigt Ihnen, wie Sie eine benutzerdefinierte Google -Such -API in Ihr Blog oder Ihre Website integrieren und ein raffinierteres Sucherlebnis bieten als Standard -WordPress -Themen -Suchfunktionen. Es ist überraschend einfach! Sie können die Suche auf y beschränken

8 atemberaubende JQuery -Seiten -Layout -Plugins 8 atemberaubende JQuery -Seiten -Layout -Plugins Mar 06, 2025 am 12:48 AM

Nutzen Sie JQuery für mühelose Webseiten -Layouts: 8 Essential Plugins JQuery vereinfacht das Webseitenlayout erheblich. In diesem Artikel werden acht leistungsstarke JQuery -Plugins hervorgehoben, die den Prozess optimieren, insbesondere nützlich für die manuelle Website -Erstellung

Erstellen Sie Ihre eigenen AJAX -Webanwendungen Erstellen Sie Ihre eigenen AJAX -Webanwendungen Mar 09, 2025 am 12:11 AM

Hier sind Sie also bereit, alles über dieses Ding namens Ajax zu lernen. Aber was genau ist das? Der Begriff AJAX bezieht sich auf eine lose Gruppierung von Technologien, mit denen dynamische, interaktive Webinhalte erstellt werden. Der Begriff Ajax, ursprünglich von Jesse J geprägt

Was ist ' this ' in JavaScript? Was ist ' this ' in JavaScript? Mar 04, 2025 am 01:15 AM

Kernpunkte Dies in JavaScript bezieht sich normalerweise auf ein Objekt, das die Methode "besitzt", aber es hängt davon ab, wie die Funktion aufgerufen wird. Wenn es kein aktuelles Objekt gibt, bezieht sich dies auf das globale Objekt. In einem Webbrowser wird es durch Fenster dargestellt. Wenn Sie eine Funktion aufrufen, wird das globale Objekt beibehalten. Sie können den Kontext mithilfe von Methoden wie CALL (), Apply () und Bind () ändern. Diese Methoden rufen die Funktion mit dem angegebenen Wert und den Parametern auf. JavaScript ist eine hervorragende Programmiersprache. Vor ein paar Jahren war dieser Satz

10 Mobile Cheat Sheets für die mobile Entwicklung 10 Mobile Cheat Sheets für die mobile Entwicklung Mar 05, 2025 am 12:43 AM

Dieser Beitrag erstellt hilfreiche Cheat -Blätter, Referenzführer, schnelle Rezepte und Code -Snippets für die Entwicklung von Android-, Blackberry und iPhone -App. Kein Entwickler sollte ohne sie sein! Touch Gesten -Referenzhandbuch (PDF) Eine wertvolle Ressource für Desig

Verbessern Sie Ihr JQuery -Wissen mit dem Quell Betrachter Verbessern Sie Ihr JQuery -Wissen mit dem Quell Betrachter Mar 05, 2025 am 12:54 AM

JQuery ist ein großartiges JavaScript -Framework. Wie in jeder Bibliothek ist es jedoch manchmal notwendig, unter die Motorhaube zu gehen, um herauszufinden, was los ist. Vielleicht liegt es daran, dass Sie einen Fehler verfolgen oder nur neugierig darauf sind, wie JQuery eine bestimmte Benutzeroberfläche erreicht

Wie erstelle ich meine eigenen JavaScript -Bibliotheken? Wie erstelle ich meine eigenen JavaScript -Bibliotheken? Mar 18, 2025 pm 03:12 PM

In Artikel werden JavaScript -Bibliotheken erstellt, veröffentlicht und aufrechterhalten und konzentriert sich auf Planung, Entwicklung, Testen, Dokumentation und Werbestrategien.

See all articles