我在 jquery UI 对话框中有一个 iframe,将其 src 设置为 doument.ready 事件:
$(document).ready(function() {
$("#iframe").attr("src", whatever);
$("#button").click(function() { $("#dialog").dialog(); });
});
<div id="dialog">
<iframe src="" id="iframe"></iframe>
<div>
一切都很好,当我click over the button dialog open
只是the problem
它loads iframe content everytime when dialog open
。我want to stop
这种行为和。我该load the contents only once at document.ready event
怎么做?