是否可以在重新获取div之后使用元素onload?
我的div:populatedChart在单击按钮后重新生成并填充了数据。一旦div加载了数据,我想检查特定信息并根据该信息进行操作。我的想法是用 onload 函数来做到这一点。但它没有像我预期的那样工作。所以我不确定它是否可能。有谁知道吗?
<div class="tableOP" id="populatedChart" onload="populatedChartOnload">
<div class="rowOP headerOP greenOP">
<div class="cell cheaderOP panel-heading green-panel">
This is your Report
</div>
</div>
<div class="rowOP oddOP">
<div class="cellOP companyname paddingStyleCompName" id="blankComp">
{!bvs.Status__c}
</div>
</div>
</div>
function populatedChartOnload(){
if ('{!bvs.Status__c}' != 'Completed') {
document.getElementById("populatedChart").style.display = "none";
}
}