首页>>Jquery文字>>可以弹出的层,弹出预置页面或者远程页面(2014-08-25)

可以弹出的层,弹出预置页面或者远程页面

可以弹出的层,弹出预置页面或者远程页面
赞赏支持
立刻微信赞赏支持 关闭

 

XML/HTML Code
  1. <div id="main">  <a href="frame.html" class="button2" id="b1">Try it!</a> <a href="message.html" class="button1" id="b2">Message Passing</a> <a href="#" class="button1" id="b3">With Cache</a> <a href="#" class="button1" id="b4">Without Cache</a>  
  2. <p id="messages"></p>  
  3. </div>  

 

JavaScript Code
  1. $(function(){  
  2.   
  3.     // If no url property is passed, the  
  4.     // href attribute will be used  
  5.   
  6.     $('#b1').frameWarp();  
  7.   
  8.     $('#b2').frameWarp({  
  9.         onMessage: function(msg){  
  10.             $('#messages').append('<b>Message Received:</b> '+ msg+'<br />');  
  11.         }  
  12.     });  
  13.   
  14.     // Cache is enabled by default  
  15.     $('#b3').frameWarp({  
  16.         url : 'http://www.freejs.net/'  
  17.     });  
  18.   
  19.     // Disable caching  
  20.     $('#b4').frameWarp({  
  21.         url : 'http://www.freejs.net/',  
  22.         cache:false  
  23.     });  
  24. });  

 


原文地址:http://www.freejs.net/article_jquerywenzi_408.html