gpt4 book ai didi

javascript - 替换内的回调函数(循环内)

转载 作者:行者123 更新时间:2023-11-29 21:21:00 25 4
gpt4 key购买 nike

我有这段代码并通过 JSLint 运行它以确保一切都符合最佳实践。它基本上是自定义特征检测。

(function() {
var vendorArray = ['', '-webkit-'],
vendorIndex = vendorArray.length,
mergedProperty,
validProperty,
activePrefix,
detectorElement = document.createElement('detector'),
detectorStyle = detectorElement.style,
prefixRegex = new RegExp('%prfx%', 'g'),
camelRegex = new RegExp('\-([a-z])', 'g'),
propertyArray = [
['backgroundImage', 'background-image: %prfx%linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)), %prfx%linear-gradient(rgba(0, 0, 0, 0.5) 1%, rgba(0, 0, 0, 0.5) 99%)'],
['boxShadow', 'box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5), inset 1px 1px 1px 1px rgba(0, 0, 0, 1)'],
['transition', '%prfx%transition: all 1s'],
['animation', '%prfx%animation: example 1s'],
['transform', '%prfx%transform: translate3d(1px, 1px, 1px)']
];

// property ist z.B. propertyArray[0] also das erste Property im Array; mit prefix kann man angeben ob das js Attribut ein Vendor-Prefix benötigt - 0 oder 1
function vendorCheck(property, prefix) {
// Zur Sicherheit löschen wir das gesamte style-Attribut zu Beginn
if (detectorElement.getAttribute('style')) {
detectorElement.removeAttribute('style');
}
while (vendorIndex--) {
// activePrefix cached den Index bzw. das Vendor-Prefix der Schleife z.b. -webkit-
activePrefix = vendorArray[vendorIndex];
// Das detector Element bekommt den Stil gesetzt >> property[1] = propertyArray[0][1] (propertyArray[0] wurde in die Funktion übergeben) >> im Stil wird der Platzhalter %prfx% mit dem jeweiligen aktiven Vendor-Prefix ersetzt
detectorStyle.cssText = property[1].replace(prefixRegex, activePrefix);
// Überprüfen ob das Attribut z.b. transition einen Vendor-Prefix erhalten soll, z.B. WebkitTransition
if (prefix === 1) {
// Aus dem String mergedProperty z.b. -webkit-transition wird -w und -t extrahiert und in Großbuchstaben zurückgegeben
mergedProperty = activePrefix + property[0];
validProperty = mergedProperty.replace(camelRegex, function(match, p1) {
return p1.toUpperCase();
});
}
// Wird prefix nicht übergeben, ist das Attribut gleich dem Attribut aus propertyArray
else {
validProperty = property[0];
}
// Wenn das detector Element der angewendeten Stil behalten hat, also das Attribut validProperty = property[0] = propertyArray[0][0] true ist, wird z.b. das Attribut WebkitTransition zurückgegeben und die Schleife beendet
if (detectorStyle[validProperty]) {
return validProperty;
}
}
};

document.getElementsByTagName('body')[0].innerHTML = detectorStyle[vendorCheck(propertyArray[4], 1)];

}());

但是 JSLint 告诉我这部分有一些问题,因为我在循环中声明了一个函数:

validProperty = mergedProperty.replace(camelRegex, function(match, p1) {
return p1.toUpperCase();
});

有没有办法在循环外有一个命名的回调函数?

在这里找到代码笔:http://codepen.io/lieferant/pen/kXJLjJ

最佳答案

Is there a way to have a named callback function that is outside the loop?

是的,只需在您的函数中声明它,然后调用它:

function vendorCheck(property, prefix) {

// ...

while (/*...*/) {
validProperty = mergedProperty.replace(capitalizeFirstCaptureGroup);
}

// ...

function capitalizeFirstCaptureGroup(match, p1) {
return p1.toUpperCase();
}

// ...
}

它可以在顶部或底部。它应该在函数的顶层,而不是在任何控制 block 中。 (从 ES2015 开始,如果它在控制 block 内是有效的,但是规则……很复杂。)

虽然实际上,那个已经足够通用了,您可以将它放在通用实用程序领域,并且比仅在 vendorCheck 中更广泛地使用它。

关于javascript - 替换内的回调函数(循环内),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38552653/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com