iframe加载结束后执行

var iframe = document.getElementById("previewFrame");
if (iframe.attachEvent) {
	iframe.attachEvent("onload", function() {
                //以下操作必须在iframe加载完后才可进行
		$("#themes").find(".selected").trigger("click");
	});
} else {
	iframe.onload = function() {
                //以下操作必须在iframe加载完后才可进行
		$("#themes").find(".selected").trigger("click");
	};
}

你可能感兴趣的:(前端,javascript)