我希望在加载 HTML 后立即显示一个箭头(无需等待插件的其他 JavaScript 加载。所以我尝试了这个:
<script type="text/javascript">
function PreLoad() {
$('.page-template-front-page-2-php #header .container').append('<div id="top-line-arrow-home"></div>');
$('.post-type-archive-games #menu-item-402').append('<div id="top-line-arrow"></div>');
$('.post-type-archive-news #menu-item-420').append('<div id="top-line-arrow"></div>');
$('.post-type-archive-jobs #menu-item-412').append('<div id="top-line-arrow"></div>');
$('.page-template-about-page-php #menu-item-19').append('<div id="top-line-arrow"></div>');
$('.page-template-contact-page-php #menu-item-22').append('<div id="top-line-arrow"></div>');
}
</script>
<body <?php body_class(); ?> onload="javascript:PreLoad();">
但是在所有其他 JavaScript(在标题中)加载之后,箭头仍然出现。
有没有其他方法可以解决这个问题?