Trophymanager: show main events of the match. So you can easy research tactics of other clubs and your tactics rules happened as expected or not.
< Commentaires sur TMVN Match Event(CN Beta)
建议将display函数的第二个divArea从.box_body.mv_bottom改为content。这样可以在使用插件时自由切换上方标签(例如球场信息,交战记录等)。
display
divArea
.box_body.mv_bottom
content
function display() { if (mainEventHTML !== "" && $('.box_body.mv_bottom').length > 0) { if ($('.post_report').length > 0) { let divArea = $('.box_body.mv_bottom div.post_report')[0]; divArea.innerHTML =divArea.innerHTML+ '<div class="mega_headline tcenter report_section_header dark_bg">主要事件</div><div><ul class="clean underlined large_padding">' + mainEventHTML + '</ul></div>' ; clearInterval(myInterval); } else if (!pause) { let divArea = $('.content')[0]; divArea.innerHTML =divArea.innerHTML+ '<div class="mega_headline tcenter report_section_header dark_bg">主要事件</div><div><ul class="clean underlined large_padding">' + mainEventHTML + '</ul></div>' ; pause = true; } } } })();
收到,感谢大佬提议。原版是越南玩家制作。
Connectez-vous pour poster une réponse.
建议将
display
函数的第二个divArea
从.box_body.mv_bottom
改为content
。这样可以在使用插件时自由切换上方标签(例如球场信息,交战记录等)。