如果 class true 添加 url 到 iframe 并处理 url 的列表然后重复?

If class true add url to iframe and work through a list of url's then repeat?

我想知道如果一个元素有 class="show" 那么第一次元素 class 是 [=30= 时如何向 iframe 添加不同的 url ] 它将加载 url: about.html

第二次 相同 元素具有 class "show" 它将打开 work.html

然后相同元素的 3d 时间具有 class "show" 它将打开 contact.html

等等等等

但是在打开 contact.html 的最后一个 class 即 "show" 我将如何再次启动它所以第 4 次 class 等于 "show" 它再次打开 about.html 并且第 5 次 class 是 "show" 它打开 work.html 等等 ?

任何想法谢谢! 我希望这也有意义。

编辑 class 显示和隐藏之间的变化,具体取决于视频模式是否打开,所以第一次显示 class 它应该显示 about.html然后第二次显示 class 应该是 work.html,第三次联系等希望更有意义

您可以使用 api jquery 提供的数据,而不是使用 class, 这是文档的 link:https://api.jquery.com/data/

例如:

//Default value
$('#foo').data('num', 1);

//Go to next page event
$("#GoToNextPage").on("click", function(){
 NextUrl();
});  

function NextUrl(){
    var elem = $('#foo');
    var number = elem.data('num');
    if(number === 2){
      elem.src = 'URL.html'
    }
}