有人可以幫我處理Google GPT googletag.cmd隊列重新排序問題嗎?Google GPT - googletag.cmd隊列重新排序
(1)在家裏HTML網頁,我有這樣的:
googletag.cmd.push(function() { defineSlot1(); });
googletag.cmd.push(function() { defineSlot2(); });
googletag.cmd.push(function() { defineSlot3(); });
googletag.cmd.push(function() { defineSlot4(); });
(2)連接JS,我動態添加:
googletag.cmd.push(function() { defineSlot5(); });
(3)所以現在在隊列googletag.cmd的,像這樣的順序:
[slot1, slot2, slot3, slot4, slot5];
我的問題是,如何移動slot5到所述第二位置之後slot1中,像這樣:
[slot1, slot5, slot2, slot3, slot4];
在https://developers.google.com/doubleclick-gpt/reference, googletag.commandArray僅具有推(F)的方法,並且是googletag.cmd的不是標準陣列。
如何做到這一點?謝謝。