function loadRedirect(){
var pageLoadRequest = '/marketing/choose-your-country';
var classAssign = document.getElementsByClassName("fancyBox");
setTimeout(function(){window.location.href=pageLoadRequest;},20);
}
我在我的网站页面上的脚本标签中有这个功能,我希望它通过将它重定向到一个类为fancyBox的URL来打开一个fancybox弹出窗口。我想可能会在页面上获取链接的类,然后将其添加到上面的URL中,但我不知道该怎么做。
我很感激任何帮助。 谢谢!