jquery dialog using iframe url

来源:互联网 发布:小管家erp软件 编辑:程序博客网 时间:2024/06/11 03:30
<div id="dialog">    <iframe id="myIframe" src=""></iframe></div><button id="dialogBtn">Open Dialog</button>And JS:$("#dialog").dialog({    autoOpen: false,    modal: true,    height: 600,    open: function(ev, ui){             $('#myIframe').attr('src','http://www.jQuery.com');          }});$('#dialogBtn').click(function(){    $('#dialog').dialog('open');});


 

原创粉丝点击