我有一个来自供应商的插件,我只能在我的网站中包含这样的插件:
<p>my content</p>
<script type="text/javascript" src="http://widgeturl"></script>
<script type='text/javascript'>
showWidget();
</script>
<!--widget inserts lots of HTML here -->
<p>more of my content</p>
现在,这个脚本生成的 HTML 非常难看,我想将一个事件处理程序附加到某个事件,当小部件脚本完成它的工作时通知我,我可以开始抓取/修改它生成的 HTML。
谁能解释我会怎么做?谢谢!