我在我的一个速度宏模板中使用 jQuery(即最后加载的内容页脚)。
该脚本适用于除一页之外的所有页面。在该页面上,页面完全呈现后,会在页面中间插入一个表格。所以我尝试了 onload 功能,仍然没有运气。
<table id="ArtifactListTable" class="ItemListTable">
<!-- this table is inserted after ajax request -->
<script>
window.onload = function() {
jQuery('.priority1').text('P1');
jQuery('.priority2').text('P2');
jQuery('.priority3').text('P3');
jQuery('.priority4,.priority5').text('None');
jQuery('.priority4,.priority5').addClass('priority0').removeClass('priority4 priority5');
};
</script>
我需要在这个 AJAX 加载函数之后运行我的 jQuery(我无法控制 ajax)。我只能处理我的 jQuery。