如何检测对象标签何时加载? 我使用以下脚本。
var object = $("<object></object>");
object.attr("data", "page.html");
$("body").append(object);
object.onload = function(){ // Doesn't work
console.log("Loaded");
};
而且我不想使用iframe。
答案 0 :(得分:-1)
var object = $("<object></object>");
object.attr("data", "man.swf");
$("body").append(object);
object.load("ajax/test.html",function(){ // Doesn't work
console.log("Loaded");
});
您缺少“ajax / test.html”
这应该有用。