I press button after that appears div in which shows "loading" and loads iframe. So, showing div I can do via jQuery, but how to load iframe after event?
问问题
1945 次
2 回答
3
src
在您希望它开始加载的那一刻设置 iframe 的属性(""
默认设置为):
$('#my-button').click(function() {
$('iframe#myIframe').attr('src', url);
});
您还可以处理 iframe 完成加载时的事件:
$('iframe#myIframe').load(function() {
// do stuff...
});
于 2012-08-11T19:36:17.127 回答
1
所以我明白了我需要什么:
<iframe id="chgMe" src="Source1.htm">Frames are not supported on your browser.</iframe>
<button onclick="document.getElementById('chgMe').src='Source2.htm'">Next</button>
于 2012-08-12T18:21:30.687 回答