Javascript - load events for embed elements

前端 未结 5 1113
感情败类
感情败类 2020-12-19 01:37

If I do an online onload event for embed objects, that seems to work but I can\'t seem to get the load event working through addEventListener. Is this expected?

5条回答
  •  囚心锁ツ
    2020-12-19 02:22

    jQuery is perhaps the best way to go with this.

    $("embed").load(function(){
       // enter code here
    })
    

提交回复
热议问题