jquery dialog iframe简单例子

来源:互联网 发布:淘宝卖家感谢信 编辑:程序博客网 时间:2024/06/08 09:18
  1. <div id="dialog">  
  2.     <iframe id="myIframe" src=""></iframe>  
  3. </div>  
  4. <button id="dialogBtn">Open Dialog</button>  
  5.   
  6. And JS:  
  7. $("#dialog").dialog({  
  8.     autoOpen: false,  
  9.     modal: true,  
  10.     height: 600,  
  11.     open: function(ev, ui){  
  12.              $('#myIframe').attr('src','http://www.jQuery.com');  
  13.           }  
  14. });  
  15.   
  16. $('#dialogBtn').click(function(){  
  17.     $('#dialog').dialog('open');  
  18. }); 

dialog属性详细请看http://a475334705.iteye.com/blog/1608769

0 0
原创粉丝点击