在我的ASPX页面中,我有一个DIV元素,其内容正在通过jquery动态加载不同的用户控件:
<li *ngFor="let thing of things">
name: {{thing.name}} {{getNumberOfChildren(thing)}}</a>
</li>
在主页中,$("#text_right").load("ucmap_namedRegions.ascx");
设置为dojoconfig parseOnLoad
。在usercontrol中,dojo脚本正在加载,但不会通过我的ready函数运行。
如果我做出false
,我会因为parser.parse()
而出错。
那我该如何捕捉准备事件?