gpt4 book ai didi

javascript - 将箭头功能更改为普通功能?

转载 作者:行者123 更新时间:2023-12-01 00:35:20 24 4
gpt4 key购买 nike

我有一个简单的功能可以使用箭头功能播放上一个视频

这是我的解决方案

  $('#interactive-layers').on('click', ".go_back", function () {
videohistory.pop();
var hist = videohistory[videohistory.length - 1];
videohistory.pop();


if (hist[0].movieid == 4) {

let movieData = movies.find(({
movieid
}) => movieid == 23);
hist.push(movieData);
playVideo(hist[3], hist[1], hist[2]);
} else {
playVideo(hist[0], hist[1], hist[2]);
}
});

这在 chrome、safari、firefox 中工作正常,但在 Internet Explorer 中,我收到以下错误。

SCRIPT1003: Expected ':'

如何更改此功能,使其能够兼容所有浏览器?

最佳答案

试试这个,

$('#interactive-layers').on('click', ".go_back", function () {
videohistory.pop();
var hist = videohistory[videohistory.length - 1];
videohistory.pop();

if (hist[0].movieid == 4) {

// Here I change the Arrow function with the es5 normal one.
/*
let movieData = movies.find(({ movieid }) => movieid == 23);
*/
let movieData = movies.find(function(movieid){
return movieid == 23;
});
hist.push(movieData);
playVideo(hist[3], hist[1], hist[2]);
} else {
playVideo(hist[0], hist[1], hist[2]);
}
});

关于javascript - 将箭头功能更改为普通功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58183473/

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