jquery는 iframe의 내용을 불러온 후에야 다음 동작을 진행합니다

685 단어 jquery
<iframe id="previewFrame" scrolling="no" class="previewFrame" frameborder="0"></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");
	};
}

좋은 웹페이지 즐겨찾기