首页>>Jquery文字>>jquery 简单的弹出页面 弹出层(2014-05-25)

jquery 简单的弹出页面 弹出层

jquery 简单的弹出页面 弹出层
赞赏支持
立刻微信赞赏支持 关闭

 

XML/HTML Code
  1. <div id=page style="margin-top:20px;">  
  2.   
  3.     
  4.   
  5. <p>Click me to open a blank window. <button type=button onClick="var w = $().WM('open'); w.find('.windowcontent').html('some html content here (freejs.net)');">new window</button>  
  6.   
  7. <p>Click me to open a mini window <button type=button onClick="var w = $().WM('open', 'http://www.freejs.net'); w.addClass('autohide');">new window</button>  
  8.   
  9. <p>  
  10. Here's some anchors links that have a class=jquery-wm attribute. These will open up in child windows.  
  11. <a href=http://www.freejs.net class=jquery-wm>slashdot</a>,  
  12. <a href=http://www.freejs.net class=jquery-wm>slickdeals</a>  
  13. <a href=index.html class=jquery-wm>clone this page</a>  
  14.   
  15. <p>  
  16. Open child windows using jquery object.  
  17. <pre>  
  18. var $w = $().WM('open','http://retrogames.com');  
  19.   
  20. // other jquery extensions that can be used on children windows  
  21. $w.WM('maximize');  
  22. $w.WM('minimize');  
  23. $w.WM('raise');  
  24. $w.WM('close');  
  25.   
  26. // open a window and manipulate the window content  
  27. var $w = $().WM('open');  
  28. $w.find('.titlebartext').text('foo');  
  29. $w.find('.windowcontent').html('here is some content');  
  30. </pre>  

 


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